{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "4c2a6fa7", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/gpfs/radev/home/tl688/.conda/envs/evoagentx/lib/python3.11/site-packages/PyPDF2/__init__.py:21: DeprecationWarning: PyPDF2 is deprecated. Please move to the pypdf library instead.\n", " warnings.warn(\n" ] } ], "source": [ "import os\n", "\n", "from dotenv import load_dotenv\n", "\n", "from evoagentx.agents.agent_manager import AgentManager\n", "from evoagentx.benchmark import HotPotQA\n", "from evoagentx.core.callbacks import suppress_logger_info\n", "from evoagentx.core.logging import logger\n", "from evoagentx.evaluators import Evaluator\n", "from evoagentx.models import OpenAILLM, OpenAILLMConfig\n", "from evoagentx.optimizers import TextGradOptimizer\n", "from evoagentx.prompts import StringTemplate\n", "from evoagentx.workflow import SequentialWorkFlowGraph\n", "from dotenv import load_dotenv\n", "\n", "from evoagentx.agents.agent_manager import AgentManager\n", "from evoagentx.benchmark import MBPP\n", "from evoagentx.core.callbacks import suppress_logger_info\n", "from evoagentx.core.logging import logger\n", "from evoagentx.evaluators import Evaluator\n", "from evoagentx.models import OpenAILLM, OpenAILLMConfig\n", "from evoagentx.optimizers import QASTRUCTUREOptimizer, TextGradOptimizer\n", "from evoagentx.prompts import StringTemplate\n", "from evoagentx.workflow import SequentialWorkFlowGraph\n", "\n", "from evoagentx.models import OpenAILLMConfig, OpenAILLM\n", "from evoagentx.workflow import SEWWorkFlowGraph, QASTRUCTUREWorkFlowGraph\n", "from evoagentx.agents import AgentManager\n", "from evoagentx.benchmark import HumanEval,AFlowMBPP\n", "from evoagentx.evaluators import Evaluator \n", "from evoagentx.optimizers import SEWOptimizer, STRUCTUREOptimizer\n", "from evoagentx.optimizers.structure_optimizer import STRUCTUREWorkFlowScheme\n", "from evoagentx.core.callbacks import suppress_logger_info\n", "\n", "from evoagentx.models import OpenAILLMConfig, OpenAILLM,AzureOpenAIConfig,LiteLLMConfig,LiteLLM\n", "from evoagentx.workflow import SEWWorkFlowGraph \n", "from evoagentx.agents import AgentManager\n", "from evoagentx.benchmark import MBPPPLUS, AFlowMBPPPLUS\n", "from evoagentx.evaluators import Evaluator \n", "from evoagentx.optimizers import SEWOptimizer \n", "from evoagentx.core.callbacks import suppress_logger_info\n", "from evoagentx.benchmark import HumanEvalPLUS\n", "from evoagentx.benchmark import SciCode\n", "from copy import deepcopy\n", "\n", "api_key = \"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\"\n", "# Function to encode the image\n", "import os\n", "os.environ[\"OPENAI_API_KEY\"] = api_key\n", "OPENAI_API_KEY = os.getenv(\"OPENAI_API_KEY\")\n", "\n", "import nest_asyncio\n", "nest_asyncio.apply()\n", "\n", "class HotPotQASplits(HotPotQA):\n", "\n", " def _load_data(self):\n", " # load the original test data \n", " super()._load_data()\n", " # split the data into train, dev and test\n", " import numpy as np \n", " np.random.seed(42)\n", " permutation = np.random.permutation(len(self._dev_data))\n", " full_test_data = self._dev_data \n", " # randomly select 10 samples for train, 40 for dev, and 100 for test\n", " self._train_data = [full_test_data[idx] for idx in permutation[:50]]\n", " self._dev_data = [full_test_data[idx] for idx in permutation[:50]]\n", " self._dev_data_full = deepcopy(self._dev_data)\n", " self._test_data = [full_test_data[idx] for idx in permutation[50:500]]\n", " self._fulldata = full_test_data\n", "\n", "\n", "def collate_func(example: dict) -> dict:\n", " context_list = []\n", " for item in example[\"context\"]:\n", " context = \"Title: {}\\nText: {}\".format(item[0], \" \".join([t.strip() for t in item[1]]))\n", " context_list.append(context)\n", " context = \"\\n\\n\".join(context_list)\n", " problem = \"Context: {}\\n\\nQuestion: {}\\n\\nAnswer:\".format(context, example[\"question\"])\n", " return {\"question\": problem}\n", "\n", "\n", "# hotpotqa_graph_data = {\n", "# \"goal\": \"Answer user questions accurately and concisely by decomposing the problem into analysis, retrieval, drafting, critique, and refinement.\",\n", "# \"tasks\": [\n", "# {\n", "# \"name\": \"analyze_question\",\n", "# \"description\": \"Normalize and analyze the question to clarify intent, extract key entities, and identify the information need.\",\n", "# \"inputs\": [\n", "# {\"name\": \"question\", \"type\": \"str\", \"required\": True,\n", "# \"description\": \"The original question from the user.\"},],\n", "# \"outputs\": [\n", "# {\"name\": \"normalized_question\", \"type\": \"str\", \"required\": True,\n", "# \"description\": \"Rephrased, unambiguous version of the question.\"}\n", "# ],\n", "# \"prompt_template\": StringTemplate(instruction=\"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"),\n", "# \"parse_mode\": \"xml\"\n", "# },\n", "\n", "# {\n", "# \"name\": \"generate_answer\",\n", "# \"description\": \"Draft an answer using the retrieved context.\",\n", "# \"inputs\": [\n", "# {\"name\": \"normalized_question\", \"type\": \"str\", \"required\": True,\n", "# \"description\": \"Normalized question to be answered.\"}\n", "# ],\n", "# \"outputs\": [\n", "# {\"name\": \"draft_answer\", \"type\": \"str\", \"required\": True,\n", "# \"description\": \"A concise, direct answer to the question.\"}\n", "# ],\n", "# \"prompt_template\": StringTemplate(instruction=\"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"),\n", "# \"parse_mode\": \"xml\"\n", "# },\n", "\n", "# # {\n", "# # \"name\": \"critique_answer\",\n", "# # \"description\": \"Check the drafted answer for correctness, faithfulness to the context, and alignment with the question.\",\n", "# # \"inputs\": [\n", "# # {\"name\": \"normalized_question\", \"type\": \"str\", \"required\": True,\n", "# # \"description\": \"The normalized question.\"},\n", "# # {\"name\": \"draft_answer\", \"type\": \"str\", \"required\": True,\n", "# # \"description\": \"The answer proposed by generate_answer.\"}\n", "# # ],\n", "# # \"outputs\": [\n", "# # {\"name\": \"is_valid\", \"type\": \"bool\", \"required\": True,\n", "# # \"description\": \"Whether the draft answer is correct and well-supported by the context.\"},\n", "# # {\"name\": \"issues\", \"type\": \"list[str]\", \"required\": False,\n", "# # \"description\": \"List of detected issues (e.g., hallucination, missing details, ambiguity).\"},\n", "# # {\"name\": \"suggested_improvements\", \"type\": \"str\", \"required\": False,\n", "# # \"description\": \"Textual suggestions on how to improve the answer, if needed.\"}\n", "# # ],\n", "# # \"prompt_template\": StringTemplate(\n", "# # instruction=(\n", "# # \"You are an Answer Critique Agent.\\n\"\n", "# # \"Compare the draft answer to the context and normalized question.\\n\"\n", "# # \"1) Mark if the answer is fully supported and correctly addresses the question.\\n\"\n", "# # \"2) If not valid, list concrete issues and suggest how to fix them.\\n\"\n", "# # \"Return XML with , (items as ), and .\"\n", "# # )\n", "# # ),\n", "# # \"parse_mode\": \"xml\"\n", "# # },\n", "\n", "# # {\n", "# # \"name\": \"refine_answer\",\n", "# # \"description\": \"Refine or rewrite the answer based on critique, preserving factual alignment with the context.\",\n", "# # \"inputs\": [\n", "# # {\"name\": \"normalized_question\", \"type\": \"str\", \"required\": True,\n", "# # \"description\": \"The normalized question.\"},\n", "# # {\"name\": \"draft_answer\", \"type\": \"str\", \"required\": True,\n", "# # \"description\": \"The initial answer to be refined.\"},\n", "# # {\"name\": \"is_valid\", \"type\": \"bool\", \"required\": True,\n", "# # \"description\": \"Validation flag from critique_answer.\"},\n", "# # {\"name\": \"suggested_improvements\", \"type\": \"str\", \"required\": False,\n", "# # \"description\": \"Guidance from the critique_answer step on how to improve the answer.\"}\n", "# # ],\n", "# # \"outputs\": [\n", "# # {\"name\": \"answer\", \"type\": \"str\", \"required\": True,\n", "# # \"description\": \"Final, concise, and validated answer ready to return to the user.\"}\n", "# # ],\n", "# # \"prompt_template\": StringTemplate(\n", "# # instruction=(\n", "# # \"You are an Answer Refinement Agent.\\n\"\n", "# # \"If is_valid is true, you may lightly polish the draft answer for clarity and brevity.\\n\"\n", "# # \"If is_valid is false, use the suggested improvements and context to rewrite the answer so that it is correct, \"\n", "# # \"fully supported, and concise (1–3 sentences).\\n\"\n", "# # \"Return XML with only.\"\n", "# # )\n", "# # ),\n", "# # \"parse_mode\": \"xml\"\n", "# # }\n", "# ]\n", "# }\n", "hotpotqa_graph_data = {\n", " \"goal\": \"Answer the question based on the context. The answer should be a direct response to the question, without including explanations or reasoning.\",\n", " \"tasks\": [\n", " {\n", " \"name\": \"answer_generate\",\n", " \"description\": \"Answer the question based on the context.\",\n", " \"inputs\": [\n", " {\"name\": \"question\", \"type\": \"str\", \"required\": True, \"description\": \"The problem to solve.\"}\n", " ],\n", " \"outputs\": [\n", " {\"name\": \"answer\", \"type\": \"str\", \"required\": True, \"description\": \"The answer to the problem.\"}\n", " ],\n", " \"prompt_template\": StringTemplate(instruction=\"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"),\n", " \"parse_mode\": \"xml\"\n", " }\n", " ] \n", "}\n", "\n", "\n", "# os.environ[\"AZURE_OPENAI_DEPLOYMENT_NAME\"] = \"gpt-4o-mini\"\n", "# os.environ[\"AZURE_OPENAI_ENDPOINT\"] = \"https://optimizehumaneval.cognitiveservices.azure.com/\"\n", "# os.environ[\"AZURE_OPENAI_KEY\"] = \"2b7h6anDXRsl5XHDUAGKHpjh3DLv9kLjcjGXN6PvsEmLVf1i3imMJQQJ99BKACYeBjFXJ3w3AAABACOGATqP\"\n", "# os.environ[\"AZURE_OPENAI_API_VERSION\"] = \"2025-01-01-preview\"\n", "# llm_config = LiteLLMConfig(model=\"azure/\" + os.getenv(\"AZURE_OPENAI_DEPLOYMENT_NAME\"), # Azure model format\n", "# azure_endpoint=os.getenv(\"AZURE_OPENAI_ENDPOINT\"),\n", "# azure_key=os.getenv(\"AZURE_OPENAI_KEY\"),\n", "# api_version=os.getenv(\"AZURE_OPENAI_API_VERSION\", \"2024-12-01-preview\"), top_p=0.85, temperature=0.2, frequency_penalty=0.0, presence_penalty=0.0)\n", "\n", "# executor_llm = LiteLLM(config=llm_config)\n", "# optimizer_llm = LiteLLM(config=llm_config)\n", "# llm = executor_llm" ] }, { "cell_type": "code", "execution_count": 2, "id": "ad0efa03", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "evoagentx.optimizers.sew_optimizer.SEWOptimizer" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "SEWOptimizer " ] }, { "cell_type": "code", "execution_count": 3, "id": "ad4b2024", "metadata": {}, "outputs": [], "source": [ "# difficult easy " ] }, { "cell_type": "code", "execution_count": 4, "id": "c95059f0", "metadata": {}, "outputs": [], "source": [ "from evoagentx.benchmark import HotPotQA" ] }, { "cell_type": "code", "execution_count": 6, "id": "84efabfa", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 09:23:35.234\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.benchmark.hotpotqa\u001b[0m:\u001b[36m_load_data_from_file\u001b[0m:\u001b[36m51\u001b[0m - \u001b[1mloading HotPotQA data from /gpfs/radev/home/tl688/.evoagentx/data/hotpotqa/hotpot_train_v1.1.json ...\u001b[0m\n", "\u001b[32m2025-12-14 09:23:38.932\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.benchmark.hotpotqa\u001b[0m:\u001b[36m_load_data_from_file\u001b[0m:\u001b[36m51\u001b[0m - \u001b[1mloading HotPotQA data from /gpfs/radev/home/tl688/.evoagentx/data/hotpotqa/hotpot_dev_distractor_v1.json ...\u001b[0m\n" ] } ], "source": [ "llm_config = OpenAILLMConfig(model=\"gpt-4o-mini-2024-07-18\", openai_key=OPENAI_API_KEY, top_p=0.85, temperature=0.2, frequency_penalty=0.0, presence_penalty=0.0)\n", "llm = OpenAILLM(config=llm_config)\n", "\n", "# obtain SEW workflow \n", "# sew_graph = SEWWorkFlowGraph.from_dict(hotpotqa_graph_data)\n", "# agent_manager = AgentManager()\n", "# agent_manager.add_agents_from_workflow(sew_graph, executor_llm.config)\n", "# obtain SEW workflow \n", "# sew_graph = QASTRUCTUREWorkFlowGraph.from_dict(hotpotqa_graph_data)\n", "sew_graph = SequentialWorkFlowGraph.from_dict(hotpotqa_graph_data)\n", "agent_manager = AgentManager()\n", "agent_manager.add_agents_from_workflow(sew_graph, llm_config=llm_config)\n", "benchmark = HotPotQASplits()\n", "# obtain Evaluator\n", "evaluator = Evaluator(\n", " llm=llm, \n", " agent_manager=agent_manager, \n", " collate_func=collate_func, \n", " num_workers=20, \n", " verbose=True\n", ")" ] }, { "cell_type": "code", "execution_count": 7, "id": "543936f2", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "{'_id': '5ae6316d5542996de7b71b87',\n", " 'answer': 'Ricard Rubio i Vives',\n", " 'question': 'Which FC Barcelona signee was a contender for the Rookie of the Year Award when he played for the Timberwolves?',\n", " 'supporting_facts': [['2011–12 Minnesota Timberwolves season', 0],\n", " ['2011–12 Minnesota Timberwolves season', 2],\n", " ['Ricky Rubio', 0],\n", " ['Ricky Rubio', 6]],\n", " 'context': [['Emilio Sagi Liñán',\n", " ['Emilio Sagi Liñán (born Bolívar, Buenos Aires, Argentina, 15 March 1900; died Barcelona, 25 May 1951), was a former Spanish footballer who played as a left-winger for FC Barcelona, the Catalan XI and Spain during the 1920s and 1930s.',\n", " \" He was the son of Emilio Sagi Barba, the Catalan baritone singer, and Concepción Liñán Pelegrí, a dancer, and as a result, was widely referred to as Sagibarba (father's surnames together in a single surname).\",\n", " ' During his playing career he played 455 games and scored 134 goals for FC Barcelona and is best remembered for forming a successful partnership with Paulino Alcántara.',\n", " ' Together with Josep Samitier, Ricardo Zamora, Félix Sesúmaga and, later, Franz Platko they were prominent members of the successful FC Barcelona team coached by Jack Greenwell.',\n", " ' His younger brother, Luís Sagi Vela, followed in his fathers footsteps and also became a successful baritone singer.',\n", " ' His son, Victor Sagi, later ran one of the biggest advertising agencies in Spain and in 1978 announced his candidacy for the presidency of FC Barcelona, but withdrew before the election was held.']],\n", " ['Ricky Rubio',\n", " ['Ricard Rubio i Vives (born October 21, 1990) is a Spanish professional basketball player for the Utah Jazz of the National Basketball Association (NBA).',\n", " ' Rubio became the youngest player ever to play in the Spanish ACB League on October 15, 2005, at age 14.',\n", " ' He made his EuroLeague debut on October 24, 2006, at age 16, becoming the first player born in the 1990s to play in a EuroLeague game.',\n", " ' He is the fifth-youngest player to make their debut in the EuroLeague.',\n", " ' On June 25, 2009, he was drafted with the fifth pick in the first round of the 2009 NBA draft by the Timberwolves, making him the first player born in the 1990s to be drafted by the NBA.',\n", " ' The Timberwolves had an agreement in principle with his former Spanish team, DKV Joventut, to buy out his contract, but Rubio backed out of the deal.',\n", " ' On August 31, 2009, Joventut traded the rights to Rubio to FC Barcelona, and Rubio signed a six-year contract with FC Barcelona the following day.',\n", " ' In 2011, Rubio joined the Minnesota Timberwolves, and spent six seasons in Minnesota before being traded to the Jazz in June 2017.']],\n", " ['Joaquim Peris de Vargas',\n", " ['Joaquim Peris de Vargas is a former President of FC Barcelona.',\n", " ' He was one of the most controversial Presidents in the history of FC Barcelona.',\n", " ' He began his career as manager in 1910 as he occupied the vice presidency, a position he held with various presidents.',\n", " ' Taking advantage of Pay Àlvar resignation in September 1914, Vargas Peris assumed leadership of FC Barcelona.',\n", " ' His spell in charge at the club was marked by constant controversy, because I always wanted to impose his opinion and even got the players rebelling against him.',\n", " ' Vargas was famous for his quote: \"I am Barcelona.\"',\n", " ' He left the organization at the request of the general assembly of FC Barcelona and he was forced to resign at the end of the season 1914-15.']],\n", " ['Ferenc Plattkó',\n", " ['Ferenc Plattkó (born Franz Platko Kopiletz in Budapest, Hungary, 2 December 1898, died Santiago, Chile, 2 September 1983), also known as Ferenc Platko or Francisco Platko, was a Hungarian footballer and manager of Austrian origin.',\n", " ' During the 1910s and 1920s he played as a goalkeeper for Vasas SC, WAC Vienna, KAFK Kula, MTK Hungária FC, FC Barcelona, Recreativo de Huelva.',\n", " ' He subsequently worked as a coach in Europe and South America, most notably with FC Barcelona, Colo-Colo, River Plate, Boca Juniors and Chile.',\n", " ' Platko was an early FC Barcelona legend and was a team-mate of Paulino Alcántara, Josep Samitier and Sagibarba.',\n", " ' His bravery as a goalkeeper was immortalized by Rafael Alberti in the poem \"Oda A Platko\".',\n", " ' After retiring as a player he returned to the club as a coach on two occasions (1934–35, 1955–56).']],\n", " ['2011–12 Minnesota Timberwolves season',\n", " ['The 2011–12 Minnesota Timberwolves season was the 23rd season of the franchise in the National Basketball Association (NBA).',\n", " ' In their first season with head coach Rick Adelman, the team finished the lockout-shortened season with a 26–40 record, nine wins above their previous season and finished in 12th place in the Western Conference.',\n", " ' This season saw the debut of 2009 draftee Ricky Rubio, who was a contender for the Rookie of the Year Award until he tore his ACL and his lateral collateral ligament after colliding into Kobe Bryant during a game against the Los Angeles Lakers and was out for the rest of the season.',\n", " ' Following the season, Brad Miller retired.']],\n", " ['Nou Palau Blaugrana',\n", " ['The Nou Palau Blaugrana will be a multi-sports indoor arena, located in Barcelona, Catalonia, Spain.',\n", " ' The arena will serve as the home arena for the basketball (FC Barcelona Bàsquet) and handball (FC Barcelona Handbol) sections of the multi-sports club FC Barcelona.',\n", " ' The Nou Palau Blaugrana will have a capacity of 12,500 spectators.']],\n", " ['Josep Maria Fusté',\n", " ['Josep Maria Fusté Blanch (born 15 April 1941) is a retired Spanish footballer and captain of FC Barcelona during the 1960s and early 1970s.',\n", " ' In 1964, together with Luis Suárez, Amancio Amaro, José Ángel Iribar and his FC Barcelona team mate, Jesús María Pereda, he also helped Spain win the European Championship.',\n", " ' He also played for CA Osasuna and Hércules CF.',\n", " ' After retiring as a player he worked as a public relations executive for \"Codorniu\", a Catalan sparkling wine company.',\n", " ' He also served as president of the FC Barcelona veterans association and publicly supported Sixto Cambra, a Catalan nationalist, who stood against Josep Lluís Nuñez in the 1989 FC Barcelona presidential elections.']],\n", " ['FC Barcelona Bàsquet B',\n", " ['FC Barcelona Bàsquet B (English: FC Barcelona Basketball B), also currently known as FC Barcelona Lassa B for sponsorship reasons, is the reserve team of FC Barcelona Lassa.',\n", " ' The team currently plays in the Spanish 2nd-tier level LEB Oro.']],\n", " ['Enrique Fernández Viola',\n", " ['Enrique Fernández Viola, commonly referred to as Enrique Fernández, (10 June 1912 – 6 October 1985) was a Uruguayan footballer and manager who played for Nacional, Talleres (RE), Independiente, FC Barcelona, Uruguay and the Catalan XI.',\n", " ' As a manager, he won two Uruguayan championships with Nacional and La Liga titles with both FC Barcelona and Real Madrid.',\n", " ' Along with Radomir Antic, he is one of only two coaches to have taken charge of both FC Barcelona and Real Madrid and he is the only coach to have won La Liga titles with both.',\n", " ' He was born in Montevideo, Uruguay.']],\n", " ['FC Barcelona Bàsquet',\n", " ['FC Barcelona Bàsquet (English: FC Barcelona Basketball), also currently known as FC Barcelona Lassa for sponsorship reasons, is a Spanish professional basketball club.',\n", " ' It is a part of the FC Barcelona multi sports club, and was founded on 24 August 1926, which makes it the oldest club in the Liga ACB.',\n", " ' The club competes domestically in the Liga ACB and the EuroLeague.',\n", " \" It has won seven of the last thirteen ACB championships, and in 2003, completed a Liga ACB (Spanish League), Copa del Rey (Spanish King's Cup) and EuroLeague triple crown.\",\n", " ' FC Barcelona Bàsquet has played in seven EuroLeague Finals, with the last one being their 2010 win.']]],\n", " 'type': 'bridge',\n", " 'level': 'hard'}" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "benchmark._test_data[0]" ] }, { "cell_type": "code", "execution_count": 8, "id": "d2bba683", "metadata": {}, "outputs": [], "source": [ "# import json\n", "# # with open(\"../../MaAS/maas/ext/maas/data/humaneval_train.jsonl\", 'w') as f:\n", "# # json.dump(humaneval._dev_data, f, indent=2) # indent=4 makes the JSON output more readable\n", "\n", "\n", "# # with open(\"../../MaAS/maas/ext/maas/data/humaneval_test.jsonl\", 'w') as f:\n", "# # json.dump(humaneval._test_data, f, indent=2) # indent=4 makes the JSON output more readable\n", "\n", "# with open(\"../../MaAS/maas/ext/maas/data/humaneval_train.jsonl\", 'w') as f:\n", "# for obj in humaneval._dev_data:\n", "# json_line = json.dumps(obj)\n", "# f.write(json_line + '\\n')\n", " \n", "# with open(\"../../MaAS/maas/ext/maas/data/humaneval_test.jsonl\", 'w') as f:\n", "# for obj in humaneval._test_data:\n", "# json_line = json.dumps(obj)\n", "# f.write(json_line + '\\n')\n" ] }, { "cell_type": "code", "execution_count": 9, "id": "8598151b", "metadata": { "scrolled": false }, "outputs": [ { "data": { "text/plain": [ "1" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(sew_graph.to_dict()['nodes'])" ] }, { "cell_type": "code", "execution_count": 10, "id": "b1f7fc18", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(sew_graph.edges)" ] }, { "cell_type": "code", "execution_count": 11, "id": "33859fa8", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[]" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sew_graph.edges" ] }, { "cell_type": "code", "execution_count": 17, "id": "227fc475", "metadata": { "scrolled": true }, "outputs": [], "source": [ "evaluator = Evaluator(llm=llm, agent_manager=agent_manager, collate_func=collate_func, num_workers=6, verbose=True)\n", "# obtain SEWOptimizer after having more roles\n", "optimizer = QASTRUCTUREOptimizer(\n", " graph=sew_graph, \n", " evaluator=evaluator, \n", " llm=llm, \n", " max_steps=20,\n", " eval_rounds=1, \n", " repr_scheme=\"python\", \n", " optimize_mode=\"all\", \n", " order=\"zero-order\",\n", " max_rounds=1\n", ")\n", "optimizer.calltime = 3\n", "optimizer.collate_func = collate_func\n", "\n", "benchmark.error_list = {}\n", "benchmark.timeout = 900\n", "benchmark.dataname = 'hotpotqa'" ] }, { "cell_type": "code", "execution_count": 49, "id": "458eb432", "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 0%| | 1/450 [00:01<14:12, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3333333333333333, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 0%| | 2/450 [00:03<13:59, 1.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.75, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 1%| | 3/450 [00:05<12:41, 1.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 1%| | 4/450 [00:07<14:37, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 1%| | 5/450 [00:09<15:13, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 1%|▏ | 6/450 [00:11<15:15, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 2%|▏ | 7/450 [00:14<15:53, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 2%|▏ | 8/450 [00:15<14:46, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 2%|▏ | 9/450 [00:17<13:13, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 2%|▏ | 10/450 [00:20<15:54, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.18181818181818182, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 2%|▏ | 11/450 [00:22<16:18, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 3%|▎ | 12/450 [00:25<16:39, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 3%|▎ | 13/450 [00:26<15:46, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 3%|▎ | 14/450 [00:29<15:57, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 3%|▎ | 15/450 [00:31<16:11, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▎ | 16/450 [00:33<16:03, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 17/450 [00:35<14:32, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 18/450 [00:37<15:17, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 19/450 [00:39<15:13, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 20/450 [00:42<15:28, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 5%|▍ | 21/450 [00:44<16:24, 2.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 5%|▍ | 22/450 [00:46<14:59, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 5%|▌ | 23/450 [00:48<15:02, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3333333333333333, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 5%|▌ | 24/450 [00:50<14:22, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 25/450 [00:51<13:23, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 26/450 [00:55<17:52, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 27/450 [00:57<16:05, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 28/450 [00:59<15:48, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▋ | 29/450 [01:01<14:51, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 7%|▋ | 30/450 [01:03<14:41, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 7%|▋ | 31/450 [01:05<13:39, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 7%|▋ | 32/450 [01:07<13:29, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 7%|▋ | 33/450 [01:09<13:31, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 34/450 [01:10<13:09, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255787.201895358)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255792.081686465)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255801.009716788)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255805.924431246)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255812.996734176)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255796.767546052)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255809.484247368)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255821.983979572)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255825.766781336)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255835.568036309)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255842.657826856)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255847.257425716)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255817.395932108)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255830.488791157)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255839.443144867)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255851.9649534)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255856.193006458)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255864.05837833)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255878.91521714)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255885.307229016)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255893.775389053)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255898.064972663)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255860.167464403)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255867.450055305)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255873.430541812)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255903.67291296)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255907.024463529)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255913.646681244)])']\n", "connector: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255921.94653662)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255925.31384234)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255930.248967316)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255910.46948294)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255917.445702909)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255935.222686874)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255940.870964816)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255943.893517813)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255948.020650452)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255963.129046261)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255970.70954101)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255974.812432844)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255953.01871942)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255966.924491264)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255979.173850534)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255982.628446912)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255987.43040238)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255998.70159754)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256012.467695586)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256017.08509794)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256020.760379571)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256008.277802393)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10255991.08613186)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10255994.373725573)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256002.941956632)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256025.355866479)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256037.03918762)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256041.289793203)])']\n", "connector: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256056.52420596)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256061.017060949)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256032.933675325)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256048.780722512)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256053.489278905)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256065.932307964)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256072.339950446)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256076.69337796)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256081.514825417)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256093.625411673)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256097.785585972)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256106.437148996)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256086.58743395)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256102.445671204)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256110.284031302)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256120.055147093)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256123.13029033)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256126.93858076)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256135.417780869)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256146.231081365)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256149.689610716)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256130.870614449)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256139.594969466)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256143.0568816)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256154.405880293)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256163.15076304)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256171.261501232)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256178.832320798)])']\n", "connector: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256181.99341202)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256185.773401584)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256195.21224826)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256166.954740468)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256174.29394858)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256190.452495094)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256205.546672052)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256210.499556823)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256219.026662825)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256231.694976728)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256202.550739728)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256214.495944062)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256223.451472532)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256226.701239713)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256236.312368432)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256250.011583433)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256253.733788485)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256263.151897123)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256268.582855785)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256246.027437845)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256240.40641801)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256259.05290976)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256273.036058694)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256277.002536198)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256280.182339067)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256284.454453643)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256295.67911878)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256299.556765988)])']\n", "connector: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256307.276515236)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256311.645531531)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256315.795568855)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256290.161896424)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256302.728181088)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256324.444051038)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256329.675559841)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256333.573535545)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256337.739434969)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256346.272646032)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256351.126378244)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256342.17085312)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256355.875913257)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256362.695333794)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256366.133053057)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256374.687805908)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256378.221835097)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256383.365881683)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256390.607296135)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256395.070852103)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256370.405709976)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256386.845864903)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256406.003965065)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256409.932439342)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256422.492393993)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256427.813474424)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256432.661566949)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256437.094188169)])']\n", "connector: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256413.711155828)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256418.243475528)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256440.989473244)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256444.924135057)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256449.056030964)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256457.25584938)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256462.738872817)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256467.721894285)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256453.519996032)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256472.180408385)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256476.021638049)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256484.889841892)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256496.155229274)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256500.146657793)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256487.821857458)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256492.306843128)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256503.598954711)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256506.994835993)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256511.568892388)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256515.327623207)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256519.130168077)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256530.407540558)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256538.111288032)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256541.9580727)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256551.20359566)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256554.779056342)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256522.636430273)])']\n", "connector: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed connector\n", "connections: ['deque([(, 10256526.138896748)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256534.292687383)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256546.424117643)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256559.343894908)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256571.289274603)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256576.238275755)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256591.17265846)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256595.22022851)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256563.082088124)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256567.359033689)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256579.504010363)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256584.709872875)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256599.013681406)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256604.657888224)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256613.730217487)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256616.86064106)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256626.086314237)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256629.999117939)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256633.17228124)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256608.128029387)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256620.51334796)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256637.207567371)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256641.234858537)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256644.987432225)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256652.685328357)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256657.273449607)])']\n", "connector: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed client session\n", "client_session: \n", "Unclosed connector\n", "connections: ['deque([(, 10256029.815600172)])']\n", "connector: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unclosed connector\n", "connections: ['deque([(, 10256158.047014412)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256198.891965443)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256319.577129368)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256359.248988053)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256398.297293808)])']\n", "connector: \n", "Unclosed connector\n", "connections: ['deque([(, 10256479.978326583)])']\n", "connector: \n", "Evaluating workflow: 8%|▊ | 35/450 [01:13<14:43, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 36/450 [01:15<13:34, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 37/450 [01:17<14:11, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5185185185185185, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 38/450 [01:19<14:38, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 9%|▊ | 39/450 [01:21<14:18, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 9%|▉ | 40/450 [01:25<17:29, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 9%|▉ | 41/450 [01:26<15:07, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 9%|▉ | 42/450 [01:32<22:21, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|▉ | 43/450 [01:35<20:59, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|▉ | 44/450 [01:38<20:40, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 45/450 [01:40<19:31, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 46/450 [01:42<16:47, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2222222222222222, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 47/450 [01:44<16:01, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 11%|█ | 48/450 [01:46<15:53, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 11%|█ | 49/450 [01:48<14:38, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 11%|█ | 50/450 [01:50<14:29, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 11%|█▏ | 51/450 [01:53<15:48, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 52/450 [01:55<15:07, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 53/450 [01:56<13:12, 2.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 54/450 [01:58<12:44, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 55/450 [02:01<14:24, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 56/450 [02:03<14:49, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 13%|█▎ | 57/450 [02:05<14:37, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 13%|█▎ | 58/450 [02:08<14:34, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4444444444444445, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 13%|█▎ | 59/450 [02:10<15:27, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 13%|█▎ | 60/450 [02:13<15:21, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▎ | 61/450 [02:15<15:22, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08695652173913045, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 62/450 [02:20<20:20, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.030769230769230767, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 63/450 [02:22<17:29, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 64/450 [02:25<18:27, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 65/450 [02:28<19:16, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 15%|█▍ | 66/450 [02:30<16:40, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 15%|█▍ | 67/450 [02:32<14:57, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 15%|█▌ | 68/450 [02:33<13:45, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 15%|█▌ | 69/450 [02:36<13:48, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 70/450 [02:38<14:18, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 71/450 [02:40<14:09, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 72/450 [02:42<13:09, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 73/450 [02:44<13:18, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▋ | 74/450 [02:46<12:56, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 17%|█▋ | 75/450 [02:48<12:07, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 17%|█▋ | 76/450 [02:50<11:52, 1.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 17%|█▋ | 77/450 [02:52<12:37, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 17%|█▋ | 78/450 [02:54<11:48, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 79/450 [02:55<11:22, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 80/450 [02:57<11:43, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 81/450 [03:00<12:23, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.10526315789473684, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 82/450 [03:02<13:52, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 83/450 [03:06<15:39, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 19%|█▊ | 84/450 [03:08<14:56, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 19%|█▉ | 85/450 [03:10<13:58, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 19%|█▉ | 86/450 [03:11<12:33, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 19%|█▉ | 87/450 [03:13<12:05, 2.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|█▉ | 88/450 [03:15<12:03, 2.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|█▉ | 89/450 [03:18<12:42, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 90/450 [03:20<13:45, 2.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 91/450 [03:22<12:39, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 92/450 [03:24<12:38, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 21%|██ | 93/450 [03:27<13:40, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 21%|██ | 94/450 [03:29<13:22, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 21%|██ | 95/450 [03:32<14:34, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 21%|██▏ | 96/450 [03:36<16:29, 2.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.1111111111111111, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 97/450 [03:38<15:40, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 98/450 [03:40<14:26, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 99/450 [03:41<12:47, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 100/450 [03:44<13:02, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 101/450 [03:47<13:54, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 23%|██▎ | 102/450 [03:49<14:03, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19999999999999998, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 23%|██▎ | 103/450 [03:51<12:43, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 23%|██▎ | 104/450 [03:52<11:42, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 23%|██▎ | 105/450 [03:54<11:51, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▎ | 106/450 [03:57<12:42, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 107/450 [04:00<13:39, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19999999999999998, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 108/450 [04:02<12:55, 2.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 109/450 [04:05<14:18, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 110/450 [04:07<13:28, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 25%|██▍ | 111/450 [04:09<13:25, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4615384615384615, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 25%|██▍ | 112/450 [04:11<11:54, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 25%|██▌ | 113/450 [04:13<11:25, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.9090909090909091, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 25%|██▌ | 114/450 [04:14<10:31, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 115/450 [04:17<11:18, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 116/450 [04:18<10:30, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 117/450 [04:20<10:45, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 118/450 [04:22<10:10, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▋ | 119/450 [04:24<11:05, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8571428571428571, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 27%|██▋ | 120/450 [04:26<11:13, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 27%|██▋ | 121/450 [04:29<12:40, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 27%|██▋ | 122/450 [04:31<11:32, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 27%|██▋ | 123/450 [04:33<12:00, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 124/450 [04:35<11:27, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 125/450 [04:37<10:44, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 126/450 [04:39<11:21, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7777777777777778, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 127/450 [04:41<11:07, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 128/450 [04:43<10:58, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7368421052631579, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 29%|██▊ | 129/450 [04:46<12:04, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 29%|██▉ | 130/450 [04:48<12:13, 2.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 29%|██▉ | 131/450 [04:50<11:39, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 29%|██▉ | 132/450 [04:52<11:26, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|██▉ | 133/450 [04:54<10:08, 1.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|██▉ | 134/450 [04:55<09:24, 1.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 135/450 [04:58<10:10, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 136/450 [04:59<09:33, 1.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 137/450 [05:02<10:41, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 31%|███ | 138/450 [05:04<10:18, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 31%|███ | 139/450 [05:05<10:12, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 31%|███ | 140/450 [05:07<09:41, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 31%|███▏ | 141/450 [05:09<10:08, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 142/450 [05:11<10:16, 2.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 143/450 [05:13<09:57, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 144/450 [05:15<09:43, 1.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 145/450 [05:17<09:52, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 146/450 [05:19<09:44, 1.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 33%|███▎ | 147/450 [05:21<09:43, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 33%|███▎ | 148/450 [05:23<09:44, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 33%|███▎ | 149/450 [05:25<10:10, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 33%|███▎ | 150/450 [05:27<10:14, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.42857142857142855, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▎ | 151/450 [05:29<10:06, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 152/450 [05:32<11:23, 2.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 153/450 [05:34<10:50, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 154/450 [05:36<10:28, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 155/450 [05:37<09:26, 1.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 35%|███▍ | 156/450 [05:39<09:02, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 35%|███▍ | 157/450 [05:41<09:17, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 35%|███▌ | 158/450 [05:43<09:18, 1.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 35%|███▌ | 159/450 [05:45<09:43, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 160/450 [05:48<10:48, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.14285714285714288, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 161/450 [05:50<10:07, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 162/450 [05:52<09:54, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 163/450 [05:54<09:50, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▋ | 164/450 [05:56<10:01, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 37%|███▋ | 165/450 [05:58<09:49, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 37%|███▋ | 166/450 [06:00<08:54, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 37%|███▋ | 167/450 [06:03<10:30, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 37%|███▋ | 168/450 [06:05<10:25, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 169/450 [06:07<10:11, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 170/450 [06:09<09:28, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 171/450 [06:13<12:54, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7142857142857143, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 172/450 [06:15<11:49, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 173/450 [06:17<10:39, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 39%|███▊ | 174/450 [06:19<09:52, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 39%|███▉ | 175/450 [06:21<09:52, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 39%|███▉ | 176/450 [06:23<09:36, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 39%|███▉ | 177/450 [06:24<08:30, 1.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|███▉ | 178/450 [06:30<14:07, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|███▉ | 179/450 [06:35<16:44, 3.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333334, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 180/450 [06:38<15:35, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.25, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 181/450 [06:40<13:20, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 182/450 [06:42<11:43, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 41%|████ | 183/450 [06:44<11:01, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 41%|████ | 184/450 [06:46<10:22, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 41%|████ | 185/450 [06:48<10:24, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 41%|████▏ | 186/450 [06:50<09:25, 2.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 187/450 [06:52<09:24, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 188/450 [06:54<08:58, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 189/450 [06:56<08:52, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3076923076923077, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 190/450 [06:58<08:32, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 191/450 [07:00<08:25, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 43%|████▎ | 192/450 [07:03<10:03, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 43%|████▎ | 193/450 [07:05<10:20, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 43%|████▎ | 194/450 [07:07<09:39, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 43%|████▎ | 195/450 [07:09<09:00, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▎ | 196/450 [07:12<09:45, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 197/450 [07:14<09:48, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.14285714285714288, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 198/450 [07:16<09:30, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 199/450 [07:18<09:10, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 200/450 [07:20<08:57, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 45%|████▍ | 201/450 [07:23<09:36, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 45%|████▍ | 202/450 [07:25<08:53, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 45%|████▌ | 203/450 [07:27<09:08, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 45%|████▌ | 204/450 [07:29<08:33, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 205/450 [07:32<08:56, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 206/450 [07:33<08:18, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 207/450 [07:35<07:59, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 208/450 [07:37<07:47, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▋ | 209/450 [07:39<08:18, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4444444444444445, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 47%|████▋ | 210/450 [07:41<07:55, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 47%|████▋ | 211/450 [07:43<08:01, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 47%|████▋ | 212/450 [07:45<08:15, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7777777777777778, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 47%|████▋ | 213/450 [07:47<07:46, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 214/450 [07:49<07:58, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 215/450 [07:51<07:24, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 216/450 [07:53<07:10, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 217/450 [07:54<07:00, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 218/450 [07:56<07:04, 1.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 49%|████▊ | 219/450 [07:58<06:39, 1.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 49%|████▉ | 220/450 [08:00<06:52, 1.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 49%|████▉ | 221/450 [08:01<06:37, 1.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 49%|████▉ | 222/450 [08:03<06:41, 1.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|████▉ | 223/450 [08:06<07:37, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.21428571428571425, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|████▉ | 224/450 [08:08<08:20, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 225/450 [08:11<09:09, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 226/450 [08:13<08:35, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 227/450 [08:15<08:16, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 51%|█████ | 228/450 [08:17<07:47, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 51%|█████ | 229/450 [08:19<07:38, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6153846153846153, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 51%|█████ | 230/450 [08:20<06:49, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 51%|█████▏ | 231/450 [08:22<06:40, 1.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 232/450 [08:25<07:19, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 233/450 [08:27<07:08, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 234/450 [08:29<08:03, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3636363636363636, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 235/450 [08:31<07:46, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 236/450 [08:34<07:44, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 53%|█████▎ | 237/450 [08:36<07:44, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 53%|█████▎ | 238/450 [08:38<07:48, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 53%|█████▎ | 239/450 [08:40<07:21, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 53%|█████▎ | 240/450 [08:42<06:58, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▎ | 241/450 [08:44<06:55, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 242/450 [08:46<06:48, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 243/450 [08:48<07:05, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 244/450 [08:49<06:37, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 245/450 [08:54<09:38, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.048780487804878044, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 55%|█████▍ | 246/450 [08:56<08:47, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 55%|█████▍ | 247/450 [08:58<08:07, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 55%|█████▌ | 248/450 [09:00<07:43, 2.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3076923076923077, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 55%|█████▌ | 249/450 [09:02<07:23, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 250/450 [09:05<07:29, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 251/450 [09:06<06:43, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 252/450 [09:09<07:46, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 253/450 [09:12<07:41, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4444444444444445, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▋ | 254/450 [09:13<07:04, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 57%|█████▋ | 255/450 [09:16<07:06, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 57%|█████▋ | 256/450 [09:18<06:44, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 57%|█████▋ | 257/450 [09:20<06:45, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 57%|█████▋ | 258/450 [09:22<06:59, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.13333333333333336, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 259/450 [09:24<07:02, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5454545454545454, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 260/450 [09:26<06:27, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 261/450 [09:28<06:22, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 262/450 [09:30<06:12, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 263/450 [09:33<07:15, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 59%|█████▊ | 264/450 [09:36<07:34, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 59%|█████▉ | 265/450 [09:37<06:58, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 59%|█████▉ | 266/450 [09:40<06:53, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 59%|█████▉ | 267/450 [09:41<06:25, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|█████▉ | 268/450 [09:43<06:13, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|█████▉ | 269/450 [09:45<06:08, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 270/450 [09:47<06:04, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 271/450 [09:51<07:14, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 272/450 [09:52<06:33, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 61%|██████ | 273/450 [09:55<06:32, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 61%|██████ | 274/450 [09:57<06:11, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 61%|██████ | 275/450 [09:58<05:56, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8571428571428571, 'em': 0.0, 'acc': 0.0}\n", "\u001b[32m2025-12-13 22:43:59.059\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.evaluators.evaluator\u001b[0m:\u001b[36m_evaluate_single_example\u001b[0m:\u001b[36m205\u001b[0m - \u001b[33m\u001b[1mError evaluating example and set the metrics to None:\n", "Example: {'_id': '5a83d7535542993344746093', 'answer': 'Los Angeles Xtreme, San Francisco Demons and Memphis Maniax', 'question': 'What other teams played in the same division that Chad Clements played in?', 'supporting_facts': [['Chuck Clements', 4], ['Las Vegas Outlaws (XFL)', 0], ['Las Vegas Outlaws (XFL)', 1]], 'context': [['Bertram Clements', ['Bertram Arthur Clements (1 December 1913 – July 2000) was an English footballer who represented Great Britain at the 1936 Summer Olympics.', ' Clements played amateur football for Casuals.']], ['1999–2000 BAI Basket', ['The 1999–2000 Season of BAI Basket (31st edition) ran from November 20, 2008 through May 16, 2000, with 8 teams playing in three different stages: in stage one (regular season) teams played a double round robin system.', ' In stage two, the six best teams played a single round robin tournament in serie A and the last six did the same for the consolation group, serie B. Finally, in stage three (final four) the best four teams from serie A played in a round robin at four rounds for the title.', ' The winners of the regular season and of the serie A are awarded a bonus point for the serie A and the final four, respectively.']], ['2007–08 BAI Basket', ['The 2007-2008 Season of BAI Basket (30th edition) ran from November 21, 2008 through May 16, 2009, with 12 teams playing in three different stages: in stage one (regular season) teams played a double round robin system.', ' In stage two, the six best teams played a single round robin tournament in serie A and the last six did the same for the consolation group, serie B. Finally, in stage three (final four) the best four teams from serie A played in a round robin at four rounds for the title.', ' The winners of the regular season and of the serie A are awarded a bonus point for the serie A and the final four, respectively.']], ['2009–10 BAI Basket', ['The 2009-2010 Season of BAI Basket (32nd edition) ran from November 13, 2009 to June 15, 2010, with 12 teams playing in three different stages: in stage one (regular season) teams played a double round robin system.', ' In stage two, the six best teams played a single round robin tournament in serie A and the last six did the same for the consolation group, serie B. Finally, in stage three (final four) the best four teams from serie A played in a round robin at four rounds for the title.', ' The winners of the regular season and of the serie A are awarded a bonus point for the serie A and the final four, respectively.']], ['Las Vegas Outlaws (XFL)', ['The Las Vegas Outlaws were an American football team in the XFL.', ' They played in the Western Division with the Los Angeles Xtreme, San Francisco Demons and Memphis Maniax.', ' They played their home games at Sam Boyd Stadium.', ' The Outlaws hosted the first nationally televised XFL game on NBC against the New York/New Jersey Hitmen.']], ['Al-Minaa SC–Naft Al-Janoob SC rivalry', ['Southern Iraqi football clubs Al-Minaa and Naft Al-Janoob have been rivals since the 2004–05 season when Naft Al-Janoob club started playing in the Premier League.', ' The clubs are respectively from Al-Maqal and Al-Tamimia, in the same city Basra, and for this reason a match between the two teams is sometimes called a \"Basra Derby\".', ' Another name is often used in the press is \"South Derby\", which comes from the location of Basra province in southern Iraq.', ' The animosity intensified since the first match, as Naft Al-Janoob was not expected to win Al-Minaa 1–0, and the exaggerated protest by Al-Minaa supporters to referee of match Khalil Yousuf prompted him to retire arbitration forever.', ' and this animosity reached a peak during the 2010–11 season, when both teams played at the end of the season in the Premier League in a match, that if it end at a draw, Naft Al-Janoob will relegate to the Iraq Division One.', ' Indeed, the match ended in a draw, and Al-Minaa fans celebrated the relegation of Naft Al-Janoob, and considered it a winning of league title.', ' In the 2015–16 season, Naft Al-Janoob returned to avenge Al-Minaa, when both teams played at the end of the season in the Premier League.', ' Al-Minaa needed two goals to go to the final, but Naft Al-Janoob played a defensive squad until the end of the match, although they were losing 1–0.']], ['2008–09 BAI Basket', ['The 2008-2009 Season of BAI Basket (31st edition) ran from November 20, 2008 through May 16, 2009, with 12 teams playing in three different stages: in stage one (regular season) teams played a double round robin system.', ' In stage two, the six best teams played a single round robin tournament in serie A and the last six did the same for the consolation group, serie B. Finally, in stage three (final four) the best four teams from serie A played in a round robin at four rounds for the title.', ' The winners of the regular season and of the serie A are awarded a bonus point for the serie A and the final four, respectively.']], ['Newport News Dodgers', ['The Newport News Dodgers were a minor league baseball affiliate of the Brooklyn Dodgers between 1944 and 1955.', ' They played in the Piedmont League and were based in Newport News, Virginia.', ' Gil Hodges played for this team in 1946.', ' Previously, Newport News teams were the Newport News Builders (1942), Newport News Pilots (1941), Newport News Shipbuilders (1900-1901; 1911-1922).', ' The teams played at Peninsula War Memorial Stadium on Pembroke Avenue in Hampton, Virginia.', ' The stadium was build by Brooklyn Dodgers President Branch Rickey.', ' The Dodgers played there from 1948-1955.', \" Previously, Newport News teams played at Builders' Park on Warwick Road (1944-1947) and prior to that at a ballpark on Wickham Avenue on the East End of Newport News.\", \" The Dodgers' move to Los Angeles in 1955 caused the team to realign its minor league affiliations, ending Newport News' franchise.\"]], ['List of KHL vs NHL games', ['Although the NHL teams played against Soviet league teams during the Super Series between 1976 and 1991, there were no games between post-Soviet and NHL teams until 2008, when Metallurg Magnitogorsk played against the New York Rangers for the 2008 Victoria Cup.', ' Two years later, in 2010, marked the first time since 1990 that NHL teams played games on post-Soviet ice.']], ['Chuck Clements', ['Chad \"Chuck\" Clements (born September 29, 1973) is a former American football quarterback who played one season with the New York Jets of the National Football League (NFL).', ' He was drafted by the New York Jets in the sixth round of the 1997 NFL Draft.', ' He played college football at the University of Houston and attended Huntsville High School in Huntsville, Texas.', ' He was also a member of the Philadelphia Eagles, Denver Broncos, Berlin Thunder, Las Vegas Outlaws and Ottawa Renegades.', ' Clements was drafted fifth overall by the Las Vegas Outlaws in the 2001 XFL Draft but, because of a preseason injury, never played for them.']]], 'type': 'bridge', 'level': 'hard'}\n", "Error: The input to LLMOutputParser.parse should be a str, but found .\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 62%|██████▏ | 277/450 [10:03<06:21, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 278/450 [10:05<05:41, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 279/450 [10:06<05:11, 1.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 280/450 [10:08<05:11, 1.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 281/450 [10:10<05:02, 1.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 63%|██████▎ | 282/450 [10:11<04:42, 1.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 63%|██████▎ | 283/450 [10:13<05:01, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 63%|██████▎ | 284/450 [10:15<05:30, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5454545454545454, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 63%|██████▎ | 285/450 [10:18<05:37, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.09523809523809523, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▎ | 286/450 [10:19<05:18, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2222222222222222, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 287/450 [10:21<04:56, 1.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 288/450 [10:23<04:55, 1.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 289/450 [10:24<04:50, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 290/450 [10:26<04:32, 1.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 65%|██████▍ | 291/450 [10:28<04:28, 1.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 65%|██████▍ | 292/450 [10:30<04:37, 1.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3333333333333333, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 65%|██████▌ | 293/450 [10:31<04:32, 1.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 65%|██████▌ | 294/450 [10:33<04:41, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 295/450 [10:35<04:58, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3076923076923077, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 296/450 [10:37<04:46, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 297/450 [10:39<04:43, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 298/450 [10:41<04:50, 1.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▋ | 299/450 [10:43<04:41, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 67%|██████▋ | 300/450 [10:44<04:23, 1.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 67%|██████▋ | 301/450 [10:47<05:06, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 67%|██████▋ | 302/450 [10:49<04:53, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 67%|██████▋ | 303/450 [10:50<04:31, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 304/450 [10:53<04:46, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 305/450 [10:54<04:29, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 306/450 [10:56<04:17, 1.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 307/450 [10:58<04:14, 1.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 308/450 [11:00<04:55, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 69%|██████▊ | 309/450 [11:06<07:04, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.23076923076923073, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 69%|██████▉ | 310/450 [11:08<06:34, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.25, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 69%|██████▉ | 311/450 [11:10<06:06, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 69%|██████▉ | 312/450 [11:12<05:30, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|██████▉ | 313/450 [11:15<06:10, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3571428571428571, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|██████▉ | 314/450 [11:17<05:29, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 315/450 [11:20<05:25, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 316/450 [11:22<05:14, 2.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 317/450 [11:23<04:45, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 71%|███████ | 318/450 [11:26<05:03, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 71%|███████ | 319/450 [11:28<04:43, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 71%|███████ | 320/450 [11:30<04:38, 2.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 71%|███████▏ | 321/450 [11:32<04:29, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 322/450 [11:34<04:20, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 323/450 [11:36<04:08, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 324/450 [11:37<03:53, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 325/450 [11:39<03:49, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 326/450 [11:41<03:56, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 73%|███████▎ | 327/450 [11:44<04:15, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 73%|███████▎ | 328/450 [11:45<04:00, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 73%|███████▎ | 329/450 [11:47<03:53, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 73%|███████▎ | 330/450 [11:49<03:43, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▎ | 331/450 [11:50<03:26, 1.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 332/450 [11:52<03:26, 1.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 333/450 [11:54<03:25, 1.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 334/450 [11:56<03:54, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 335/450 [11:58<03:45, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 75%|███████▍ | 336/450 [12:00<03:41, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 75%|███████▍ | 337/450 [12:02<03:45, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 75%|███████▌ | 338/450 [12:05<03:54, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 75%|███████▌ | 339/450 [12:07<03:49, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3157894736842105, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 340/450 [12:09<03:53, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5454545454545454, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 341/450 [12:11<03:48, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 342/450 [12:13<03:45, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 343/450 [12:15<03:25, 1.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▋ | 344/450 [12:16<03:19, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 77%|███████▋ | 345/450 [12:18<03:18, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 77%|███████▋ | 346/450 [12:21<03:56, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.046511627906976744, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 77%|███████▋ | 347/450 [12:23<03:33, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 77%|███████▋ | 348/450 [12:25<03:27, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 349/450 [12:27<03:33, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 350/450 [12:30<03:38, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 351/450 [12:32<03:32, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 352/450 [12:34<03:34, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 353/450 [12:36<03:33, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 79%|███████▊ | 354/450 [12:39<03:58, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 79%|███████▉ | 355/450 [12:41<03:45, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 79%|███████▉ | 356/450 [12:43<03:26, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3333333333333333, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 79%|███████▉ | 357/450 [12:45<03:20, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|███████▉ | 358/450 [12:47<03:16, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|███████▉ | 359/450 [12:50<03:39, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6363636363636364, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 360/450 [12:52<03:26, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 361/450 [12:55<03:18, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 362/450 [12:56<03:03, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 81%|████████ | 363/450 [12:58<03:00, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 81%|████████ | 364/450 [13:02<03:45, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.05405405405405405, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 81%|████████ | 365/450 [13:06<04:19, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 81%|████████▏ | 366/450 [13:08<03:43, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 367/450 [13:10<03:21, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 368/450 [13:12<03:10, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 369/450 [13:14<03:06, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 370/450 [13:16<02:51, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 371/450 [13:18<02:47, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 83%|████████▎ | 372/450 [13:21<03:06, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 83%|████████▎ | 373/450 [13:23<02:58, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.75, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 83%|████████▎ | 374/450 [13:25<02:49, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 83%|████████▎ | 375/450 [13:27<02:41, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.11764705882352941, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▎ | 376/450 [13:29<02:29, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 377/450 [13:31<02:31, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 378/450 [13:33<02:33, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 379/450 [13:35<02:25, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 380/450 [13:37<02:13, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 85%|████████▍ | 381/450 [13:38<02:04, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 85%|████████▍ | 382/450 [13:41<02:23, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 85%|████████▌ | 383/450 [13:43<02:15, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 85%|████████▌ | 384/450 [13:46<02:33, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 385/450 [13:48<02:26, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 386/450 [13:51<02:30, 2.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.10526315789473684, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 387/450 [13:54<02:38, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 388/450 [13:56<02:25, 2.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▋ | 389/450 [13:57<02:05, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 87%|████████▋ | 390/450 [13:59<01:55, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 87%|████████▋ | 391/450 [14:01<02:07, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 87%|████████▋ | 392/450 [14:03<02:01, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 87%|████████▋ | 393/450 [14:05<01:52, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4444444444444445, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 394/450 [14:08<02:06, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 395/450 [14:10<02:03, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 396/450 [14:13<02:08, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 397/450 [14:15<02:02, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 398/450 [14:18<02:08, 2.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 89%|████████▊ | 399/450 [14:20<01:54, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 89%|████████▉ | 400/450 [14:23<02:06, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 89%|████████▉ | 401/450 [14:25<01:55, 2.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 89%|████████▉ | 402/450 [14:28<02:06, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|████████▉ | 403/450 [14:30<01:53, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|████████▉ | 404/450 [14:32<01:52, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 405/450 [14:36<02:00, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 406/450 [14:38<01:49, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.18181818181818182, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 407/450 [14:39<01:36, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 91%|█████████ | 408/450 [14:42<01:41, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 91%|█████████ | 409/450 [14:44<01:30, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3333333333333333, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 91%|█████████ | 410/450 [14:46<01:24, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 91%|█████████▏| 411/450 [14:48<01:20, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 412/450 [14:49<01:13, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 413/450 [14:51<01:07, 1.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 414/450 [14:53<01:09, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 415/450 [14:55<01:04, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 416/450 [14:57<01:08, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 93%|█████████▎| 417/450 [14:59<01:01, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 93%|█████████▎| 418/450 [15:01<01:01, 1.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 93%|█████████▎| 419/450 [15:02<00:57, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 93%|█████████▎| 420/450 [15:04<00:55, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▎| 421/450 [15:07<01:04, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 422/450 [15:09<00:59, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 423/450 [15:11<00:56, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 424/450 [15:13<00:52, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 425/450 [15:15<00:51, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 95%|█████████▍| 426/450 [15:18<00:52, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.21052631578947367, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 95%|█████████▍| 427/450 [15:20<00:51, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 95%|█████████▌| 428/450 [15:22<00:46, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 95%|█████████▌| 429/450 [15:24<00:45, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 430/450 [15:26<00:41, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 431/450 [15:28<00:37, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 432/450 [15:30<00:36, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 433/450 [15:32<00:32, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8571428571428571, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▋| 434/450 [15:34<00:31, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 97%|█████████▋| 435/450 [15:37<00:34, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 97%|█████████▋| 436/450 [15:39<00:31, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 97%|█████████▋| 437/450 [15:40<00:26, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 97%|█████████▋| 438/450 [15:43<00:25, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4444444444444445, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 439/450 [15:44<00:20, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 440/450 [15:46<00:20, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 441/450 [15:49<00:18, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 442/450 [15:50<00:15, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 443/450 [15:53<00:14, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 99%|█████████▊| 444/450 [15:55<00:12, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 99%|█████████▉| 445/450 [15:56<00:09, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 99%|█████████▉| 446/450 [15:58<00:07, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8235294117647058, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 99%|█████████▉| 447/450 [16:01<00:06, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5454545454545454, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 100%|█████████▉| 448/450 [16:02<00:03, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4444444444444445, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 100%|█████████▉| 449/450 [16:05<00:02, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 450/450 [16:07<00:00, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n", "Evaluation metrics: {'f1': 0.620408163233622, 'em': 0.44222222222222224, 'acc': 0.6444444444444445}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] } ], "source": [ "\n", "optimizer.evaluator.dataname = 'hotpotqa'\n", "with suppress_logger_info():\n", " metrics = optimizer.evaluate(dataset=benchmark, eval_mode=\"test\")\n", "print(\"Evaluation metrics: \", metrics)" ] }, { "cell_type": "code", "execution_count": null, "id": "3e3a7246", "metadata": {}, "outputs": [], "source": [ "# {'f1': 0.1335514952310248, 'em': 0.006666666666666667, 'acc': 0.3622222222222222}" ] }, { "cell_type": "code", "execution_count": null, "id": "ee6826ce", "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:41:45.927\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m826\u001b[0m - \u001b[1mOptimizing the SequentialWorkFlowGraph workflow with python representation.\u001b[0m\n", "\u001b[32m2025-12-14 10:41:45.928\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m830\u001b[0m - \u001b[1mRun initial evaluation on the original workflow ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:52, 4.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:09<03:55, 4.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:12<03:03, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:15<02:37, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:18<02:40, 3.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.09523809523809523, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:21<02:23, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:24<02:19, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:28<02:16, 3.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:31<02:15, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:36<02:33, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:39<02:24, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:42<02:12, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:45<01:59, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:49<02:06, 3.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:53<02:06, 3.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:57<02:02, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [01:00<01:58, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:02<01:40, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:05<01:36, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:08<01:26, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:12<01:35, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:15<01:27, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:18<01:27, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.20689655172413793, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:21<01:20, 3.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:25<01:22, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:28<01:15, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:30<01:07, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:34<01:13, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.05128205128205128, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:38<01:09, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:39<00:57, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:42<00:53, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:44<00:47, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:48<00:51, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:52<00:49, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:56<00:51, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:58<00:44, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:03<00:45, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:10<00:54, 4.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:13<00:45, 4.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:16<00:38, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:20<00:36, 4.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:23<00:27, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:25<00:22, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:28<00:19, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:32<00:17, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:35<00:13, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:38<00:09, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:41<00:06, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:44<00:03, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:48<00:00, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 10:44:34.604\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m834\u001b[0m - \u001b[1mInitial metrics: {'f1': 0.7155364938243497, 'em': 0.52, 'acc': 0.76}\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:44:55.226\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.665 | Total tokens: 4075750 | Current cost: $0.011 | Current tokens: 72248\u001b[0m\n", "\u001b[32m2025-12-14 10:45:07.385\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.676 | Total tokens: 4148000 | Current cost: $0.011 | Current tokens: 72250\u001b[0m\n", "\u001b[32m2025-12-14 10:45:16.795\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.687 | Total tokens: 4220273 | Current cost: $0.011 | Current tokens: 72273\u001b[0m\n", "\u001b[32m2025-12-14 10:45:19.921\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.687 | Total tokens: 4221510 | Current cost: $0.000 | Current tokens: 1237\u001b[0m\n", "The code generation workflow exhibits several critical structural issues that hinder its effectiveness, including a lack of contextual understanding, which leads to incorrect predictions; an overly simplistic and rigid output structure that fails to accommodate nuanced questions; inadequate error handling and absence of a feedback loop for learning from past mistakes; inconsistent output formats that cause confusion; and insufficient training data that limits the agent's knowledge scope. Additionally, the reliance on keywords rather than comprehensive understanding, ambiguous question interpretations, and a flawed scoring mechanism further exacerbate the problem. Overall, significant enhancements are needed in contextual comprehension, flexibility, error management, and iterative learning to improve the accuracy of generated code responses.\n", "\u001b[32m2025-12-14 10:45:23.292\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.687 | Total tokens: 4222010 | Current cost: $0.000 | Current tokens: 500\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'answer_generate', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling', 'args': ['answer'], 'outputs': ['validated_answer']},\n", " {'name': 'feedback_loop', 'args': ['validated_answer'], 'outputs': ['learning_data']},\n", " {'name': 'contextual_understanding', 'args': ['learning_data'], 'outputs': ['enhanced_context']},\n", " {'name': 'flexible_output', 'args': ['enhanced_context'], 'outputs': ['final_answer']}\n", "]\n", "```\n", "inputname error_handling\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'error_handling', 'args': ['answer'], 'outputs': ['validated_answer']}\n", "-1\n", "inputname feedback_loop\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'feedback_loop', 'args': ['validated_answer'], 'outputs': ['learning_data']}\n", "-1\n", "inputname contextual_understanding\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'contextual_understanding', 'args': ['learning_data'], 'outputs': ['enhanced_context']}\n", "-1\n", "inputname flexible_output\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'flexible_output', 'args': ['enhanced_context'], 'outputs': ['final_answer']}\n", "-1\n", "\u001b[32m2025-12-14 10:45:23.293\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'error_handling8032', 'feedback_loop1410', 'contextual_understanding4372', 'flexible_output551']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for Gesellschaft mit beschränkter Haftung.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines that focus on lifestyle and interests relevant to women.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Juliet\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, they are not both American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners men's basketball\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: German culture\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall in Nashville, Tennessee, owned by Simon Property Group. It opened in 2000 on the former site of the Opryland USA theme park.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language, encompassing various genres such as tragedy, history, and comedy. They have been translated into every major living language and are performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: \"Frederick Lindemann, 1st Viscount Cherwell\"\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code through a combination of colors and blocks.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'answer_generate', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:45:38.259\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.698 | Total tokens: 4294445 | Current cost: $0.011 | Current tokens: 72435\u001b[0m\n", "\u001b[32m2025-12-14 10:45:40.726\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.698 | Total tokens: 4294581 | Current cost: $0.000 | Current tokens: 136\u001b[0m\n", "\u001b[32m2025-12-14 10:45:42.294\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.698 | Total tokens: 4295528 | Current cost: $0.000 | Current tokens: 947\u001b[0m\n", "{'name': 'error_handling8032', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:45:54.230\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.709 | Total tokens: 4367907 | Current cost: $0.011 | Current tokens: 72379\u001b[0m\n", "\u001b[32m2025-12-14 10:45:55.781\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.710 | Total tokens: 4368038 | Current cost: $0.000 | Current tokens: 131\u001b[0m\n", "\u001b[32m2025-12-14 10:45:58.037\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.710 | Total tokens: 4368915 | Current cost: $0.000 | Current tokens: 877\u001b[0m\n", "{'name': 'feedback_loop1410', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:46:18.898\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.721 | Total tokens: 4441244 | Current cost: $0.011 | Current tokens: 72329\u001b[0m\n", "\u001b[32m2025-12-14 10:46:21.091\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.721 | Total tokens: 4441385 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 10:46:23.222\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.721 | Total tokens: 4442238 | Current cost: $0.000 | Current tokens: 853\u001b[0m\n", "{'name': 'contextual_understanding4372', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:46:46.488\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.732 | Total tokens: 4514653 | Current cost: $0.011 | Current tokens: 72415\u001b[0m\n", "\u001b[32m2025-12-14 10:46:47.951\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.732 | Total tokens: 4514786 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 10:46:50.582\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.732 | Total tokens: 4515718 | Current cost: $0.000 | Current tokens: 932\u001b[0m\n", "{'name': 'flexible_output551', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:47:04.128\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.743 | Total tokens: 4588102 | Current cost: $0.011 | Current tokens: 72384\u001b[0m\n", "\u001b[32m2025-12-14 10:47:06.005\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.743 | Total tokens: 4588243 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 10:47:08.046\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.743 | Total tokens: 4589144 | Current cost: $0.000 | Current tokens: 901\u001b[0m\n", "\u001b[32m2025-12-14 10:47:08.047\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'error_handling8032', 'feedback_loop1410', 'contextual_understanding4372', 'flexible_output551']\u001b[0m\n", "\u001b[32m2025-12-14 10:47:08.047\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 1 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:21, 4.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4210526315789474, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:09<03:47, 4.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:12<03:05, 3.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:14<02:30, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:18<02:30, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:21<02:35, 3.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.375, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:24<02:20, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:29<02:37, 3.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:32<02:20, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:38<02:48, 4.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:40<02:25, 3.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:44<02:17, 3.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:48<02:23, 3.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:52<02:20, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:55<02:09, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:59<02:09, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [01:04<02:12, 4.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:06<01:54, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:09<01:44, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:13<01:44, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:16<01:37, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:19<01:28, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:23<01:36, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:26<01:28, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:30<01:24, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:33<01:16, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:36<01:16, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:41<01:25, 3.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.05714285714285715, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:47<01:31, 4.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:49<01:14, 3.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:52<01:05, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:55<00:58, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:58<00:54, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [02:01<00:51, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:05<00:50, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:08<00:45, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:13<00:50, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3157894736842105, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:19<00:53, 4.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:22<00:44, 4.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:26<00:39, 3.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:29<00:32, 3.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:31<00:26, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:33<00:21, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:37<00:19, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:40<00:15, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:42<00:11, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:45<00:08, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:48<00:05, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:51<00:02, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:55<00:00, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 10:50:04.032\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 1 metrics: {'f1': 0.6740305151612083, 'em': 0.52, 'acc': 0.78}\u001b[0m\n", "randomly update dataset\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:50:13.691\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.773 | Total tokens: 4766592 | Current cost: $0.011 | Current tokens: 72257\u001b[0m\n", "\u001b[32m2025-12-14 10:50:23.084\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.784 | Total tokens: 4838820 | Current cost: $0.011 | Current tokens: 72228\u001b[0m\n", "\u001b[32m2025-12-14 10:50:31.777\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.795 | Total tokens: 4911093 | Current cost: $0.011 | Current tokens: 72273\u001b[0m\n", "\u001b[32m2025-12-14 10:50:35.811\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.795 | Total tokens: 4912316 | Current cost: $0.000 | Current tokens: 1223\u001b[0m\n", "The code generation workflow exhibits several critical structural issues that compromise its accuracy and reliability. Key problems include a lack of contextual understanding, leading to incorrect predictions; inconsistent output formatting that confuses interpretation; and an over-reliance on direct answers and keyword matching, which neglects nuanced meanings. Additionally, the workflow suffers from inadequate error handling, failure to capture variability in answers, and a lack of a feedback loop for learning from past mistakes. It also struggles with ambiguous questions and has a limited scope of knowledge, resulting in outdated responses. Overall, significant refinements are needed to enhance contextual comprehension, prediction logic, and adherence to output standards.\n", "\u001b[32m2025-12-14 10:50:38.739\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.796 | Total tokens: 4912792 | Current cost: $0.000 | Current tokens: 476\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'answer_generate', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'contextual_understanding', 'args': ['context'], 'outputs': ['contextual_answer']},\n", " {'name': 'output_formatting', 'args': ['contextual_answer'], 'outputs': ['formatted_answer']},\n", " {'name': 'error_handling', 'args': ['formatted_answer'], 'outputs': ['final_answer']}\n", "]\n", "```\n", "inputname contextual_understanding\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'contextual_understanding', 'args': ['context'], 'outputs': ['contextual_answer']}\n", "-1\n", "inputname output_formatting\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'output_formatting', 'args': ['contextual_answer'], 'outputs': ['formatted_answer']}\n", "-1\n", "inputname error_handling\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'error_handling', 'args': ['formatted_answer'], 'outputs': ['final_answer']}\n", "-1\n", "\u001b[32m2025-12-14 10:50:38.740\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding4332', 'output_formatting4076', 'error_handling5555']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung,\" which means \"company with limited liability\" in German.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: Engelbert Dollfuss was assassinated as part of a failed coup attempt by Nazi agents.\n", "Solutions: a failed coup attempt\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Juliet\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, only Darren Benjamin Shepherd is American; Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in the field of Engineering.\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners men's basketball\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy given to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: \"Sam Boyd Stadium\"\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the former site of the Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language, categorized into tragedy, history, and comedy, and have been translated into every major living language, being performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: \"Sam Kelly, who was best known for his role as Captain Hans Geering in \\\"'Allo 'Allo!\\\".\"\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: John Beddington\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Interscope Records\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code through a combination of colors and blocks.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, Duke Energy is based in North Carolina, while Affiliated Managers Group is based in Massachusetts.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'answer_generate', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:50:49.902\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.807 | Total tokens: 4985212 | Current cost: $0.011 | Current tokens: 72420\u001b[0m\n", "\u001b[32m2025-12-14 10:50:51.542\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.807 | Total tokens: 4985351 | Current cost: $0.000 | Current tokens: 139\u001b[0m\n", "\u001b[32m2025-12-14 10:50:54.596\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.807 | Total tokens: 4986319 | Current cost: $0.000 | Current tokens: 968\u001b[0m\n", "{'name': 'contextual_understanding4332', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:51:04.941\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.818 | Total tokens: 5058796 | Current cost: $0.011 | Current tokens: 72477\u001b[0m\n", "\u001b[32m2025-12-14 10:51:06.459\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.818 | Total tokens: 5058934 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 10:51:08.525\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.818 | Total tokens: 5059863 | Current cost: $0.000 | Current tokens: 929\u001b[0m\n", "{'name': 'output_formatting4076', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:51:25.463\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.829 | Total tokens: 5132389 | Current cost: $0.011 | Current tokens: 72526\u001b[0m\n", "\u001b[32m2025-12-14 10:51:27.873\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.829 | Total tokens: 5132527 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 10:51:29.865\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.829 | Total tokens: 5133491 | Current cost: $0.000 | Current tokens: 964\u001b[0m\n", "{'name': 'error_handling5555', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:51:40.059\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.840 | Total tokens: 5205916 | Current cost: $0.011 | Current tokens: 72425\u001b[0m\n", "\u001b[32m2025-12-14 10:51:41.443\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.841 | Total tokens: 5206049 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 10:51:43.873\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.841 | Total tokens: 5206900 | Current cost: $0.000 | Current tokens: 851\u001b[0m\n", "\u001b[32m2025-12-14 10:51:43.874\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding4332', 'output_formatting4076', 'error_handling5555']\u001b[0m\n", "\u001b[32m2025-12-14 10:51:43.874\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 2 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:18, 4.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:08<03:24, 4.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3076923076923077, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:11<02:51, 3.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:14<02:40, 3.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:17<02:29, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:20<02:17, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:22<02:04, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:25<01:58, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:28<01:53, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:32<02:11, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:35<01:59, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:37<01:51, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:40<01:41, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:42<01:38, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:46<01:42, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:49<01:41, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:53<01:53, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:55<01:35, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:57<01:24, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [00:59<01:12, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:01<01:10, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:04<01:10, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:07<01:13, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:11<01:14, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:13<01:07, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:16<01:06, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:18<01:00, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:22<01:03, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.0909090909090909, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:25<01:01, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:27<00:53, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:29<00:48, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:31<00:45, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:34<00:45, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:38<00:48, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:42<00:46, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:44<00:40, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:49<00:44, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.35294117647058826, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:54<00:47, 3.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [01:57<00:40, 3.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:00<00:34, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:03<00:29, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:05<00:23, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:07<00:18, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:10<00:17, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:14<00:15, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:16<00:11, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:19<00:08, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:22<00:05, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:26<00:03, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:29<00:00, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 10:54:13.800\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 2 metrics: {'f1': 0.7067985505314108, 'em': 0.5, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:54:22.530\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.870 | Total tokens: 5384078 | Current cost: $0.011 | Current tokens: 72268\u001b[0m\n", "\u001b[32m2025-12-14 10:54:29.531\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.881 | Total tokens: 5456291 | Current cost: $0.011 | Current tokens: 72213\u001b[0m\n", "\u001b[32m2025-12-14 10:54:37.577\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.892 | Total tokens: 5528558 | Current cost: $0.011 | Current tokens: 72267\u001b[0m\n", "\u001b[32m2025-12-14 10:54:40.000\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.893 | Total tokens: 5529750 | Current cost: $0.000 | Current tokens: 1192\u001b[0m\n", "The code generation workflow exhibits several critical issues that compromise its accuracy and effectiveness. Key problems include a lack of contextual understanding, leading to incorrect predictions; a rigid single-step process that limits refinement and validation; inadequate error handling and feedback mechanisms; and an inconsistent output format that confuses users. Additionally, the training data is outdated, limited to information up to October 2023, and the system fails to adapt to user input or learn from past mistakes. These deficiencies collectively hinder the workflow's ability to generate accurate and relevant code responses.\n", "\u001b[32m2025-12-14 10:54:41.907\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.893 | Total tokens: 5530206 | Current cost: $0.000 | Current tokens: 456\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'answer_generate', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'contextual_understanding', 'args': ['answer'], 'outputs': ['contextual_answer']},\n", " {'name': 'refinement', 'args': ['contextual_answer'], 'outputs': ['refined_answer']},\n", " {'name': 'error_handling', 'args': ['refined_answer'], 'outputs': ['final_answer']}\n", "]\n", "```\n", "inputname contextual_understanding\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'contextual_understanding', 'args': ['answer'], 'outputs': ['contextual_answer']}\n", "-1\n", "inputname refinement\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'refinement', 'args': ['contextual_answer'], 'outputs': ['refined_answer']}\n", "-1\n", "inputname error_handling\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'error_handling', 'args': ['refined_answer'], 'outputs': ['final_answer']}\n", "-1\n", "\u001b[32m2025-12-14 10:54:41.909\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding5303', 'refinement6102', 'error_handling8564']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung.\"\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: \"Jonny Craig has been a member of more bands than Pete Doherty.\"\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are presented as some of the greatest in the English language and are continually performed worldwide.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Sam Kelly, best known for his role as Captain Hans Geering in \"'Allo 'Allo!\".\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: \"Frederick Lindemann, 1st Viscount Cherwell\"\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'answer_generate', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:54:50.899\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.904 | Total tokens: 5602531 | Current cost: $0.011 | Current tokens: 72325\u001b[0m\n", "\u001b[32m2025-12-14 10:54:52.382\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.904 | Total tokens: 5602672 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 10:54:54.134\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.904 | Total tokens: 5603710 | Current cost: $0.000 | Current tokens: 1038\u001b[0m\n", "{'name': 'contextual_understanding5303', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:55:06.326\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.915 | Total tokens: 5676081 | Current cost: $0.011 | Current tokens: 72371\u001b[0m\n", "\u001b[32m2025-12-14 10:55:07.739\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.915 | Total tokens: 5676214 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 10:55:10.013\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.915 | Total tokens: 5677088 | Current cost: $0.000 | Current tokens: 874\u001b[0m\n", "{'name': 'refinement6102', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:55:19.391\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.926 | Total tokens: 5749399 | Current cost: $0.011 | Current tokens: 72311\u001b[0m\n", "\u001b[32m2025-12-14 10:55:20.738\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.926 | Total tokens: 5749540 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 10:55:22.925\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.926 | Total tokens: 5750357 | Current cost: $0.000 | Current tokens: 817\u001b[0m\n", "{'name': 'error_handling8564', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:55:35.123\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.937 | Total tokens: 5822755 | Current cost: $0.011 | Current tokens: 72398\u001b[0m\n", "\u001b[32m2025-12-14 10:55:36.329\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.937 | Total tokens: 5822889 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 10:55:38.587\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.938 | Total tokens: 5823809 | Current cost: $0.000 | Current tokens: 920\u001b[0m\n", "\u001b[32m2025-12-14 10:55:38.587\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding5303', 'refinement6102', 'error_handling8564']\u001b[0m\n", "\u001b[32m2025-12-14 10:55:38.589\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 3 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<02:50, 3.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:08<03:21, 4.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:10<02:38, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:12<02:17, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:15<02:10, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:17<01:54, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:20<01:49, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:23<02:00, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:26<01:56, 2.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:30<02:08, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:32<01:55, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:35<01:52, 2.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:38<01:39, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:41<01:49, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:44<01:45, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:47<01:43, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:51<01:43, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:53<01:31, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:56<01:27, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [00:57<01:09, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:00<01:16, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:03<01:11, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:06<01:16, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:09<01:11, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:11<01:09, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:14<01:05, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:17<01:02, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:22<01:14, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:24<01:07, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:27<00:57, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:29<00:52, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:32<00:49, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:34<00:43, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:36<00:40, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:40<00:40, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:42<00:36, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:45<00:36, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:51<00:46, 3.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [01:54<00:36, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [01:56<00:29, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [01:59<00:26, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:02<00:24, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:04<00:19, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:07<00:17, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.23529411764705882, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:10<00:14, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:13<00:11, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:15<00:07, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:17<00:05, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:19<00:02, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:23<00:00, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 10:58:01.597\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 3 metrics: {'f1': 0.7204238919419184, 'em': 0.52, 'acc': 0.74}\u001b[0m\n", "randomly update dataset\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:58:11.719\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.967 | Total tokens: 6000746 | Current cost: $0.011 | Current tokens: 72212\u001b[0m\n", "\u001b[32m2025-12-14 10:58:19.550\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.978 | Total tokens: 6072979 | Current cost: $0.011 | Current tokens: 72233\u001b[0m\n", "\u001b[32m2025-12-14 10:58:28.088\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.989 | Total tokens: 6145237 | Current cost: $0.011 | Current tokens: 72258\u001b[0m\n", "\u001b[32m2025-12-14 10:58:30.887\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.989 | Total tokens: 6146397 | Current cost: $0.000 | Current tokens: 1160\u001b[0m\n", "The code generation workflow exhibits several critical structural issues that compromise its accuracy, including inadequate context handling, lack of validation mechanisms, over-reliance on direct mapping and keyword matching, and insufficient error handling. It fails to effectively utilize context, leading to misinterpretations and ambiguous responses, while also lacking a learning mechanism to improve from past errors. Additionally, the output formatting is inconsistent and rigid, and the system's knowledge is limited to data up to October 2023, which may not reflect recent developments. Overall, these deficiencies hinder the workflow's ability to generate reliable and contextually relevant answers.\n", "\u001b[32m2025-12-14 10:58:33.032\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $0.989 | Total tokens: 6146860 | Current cost: $0.000 | Current tokens: 463\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'context_handle', 'args': ['question'], 'outputs': ['context']},\n", " {'name': 'answer_generate', 'args': ['context'], 'outputs': ['answer']},\n", " {'name': 'validation_mechanism', 'args': ['answer'], 'outputs': ['validated_answer']},\n", " {'name': 'error_handling', 'args': ['validated_answer'], 'outputs': ['final_answer']}\n", "]\n", "```\n", "inputname context_handle\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'context_handle', 'args': ['question'], 'outputs': ['context']}\n", "-1\n", "inputname validation_mechanism\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'validation_mechanism', 'args': ['answer'], 'outputs': ['validated_answer']}\n", "-1\n", "inputname error_handling\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'error_handling', 'args': ['validated_answer'], 'outputs': ['final_answer']}\n", "-1\n", "\u001b[32m2025-12-14 10:58:33.033\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['context_handle2248', 'answer_generate', 'validation_mechanism6354', 'error_handling8070']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for Gesellschaft mit beschränkter Haftung.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Darren Benjamin Shepherd is American, but Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: German culture\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the former site of the Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare, who lived from 1564 to 1616, is known for his works being among the greatest in the English language, translated into every major living language, and continually performed around the world.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: \"Frederick Lindemann, 1st Viscount Cherwell\"\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'context_handle2248', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 10:58:47.954\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.000 | Total tokens: 6219251 | Current cost: $0.011 | Current tokens: 72391\u001b[0m\n", "\u001b[32m2025-12-14 10:58:49.348\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.001 | Total tokens: 6219389 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 10:58:51.317\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.001 | Total tokens: 6220290 | Current cost: $0.000 | Current tokens: 901\u001b[0m\n", "{'name': 'answer_generate', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:59:02.770\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.012 | Total tokens: 6292645 | Current cost: $0.011 | Current tokens: 72355\u001b[0m\n", "\u001b[32m2025-12-14 10:59:04.134\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.012 | Total tokens: 6292778 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 10:59:06.621\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.012 | Total tokens: 6293948 | Current cost: $0.000 | Current tokens: 1170\u001b[0m\n", "{'name': 'validation_mechanism6354', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:59:20.839\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.023 | Total tokens: 6366335 | Current cost: $0.011 | Current tokens: 72387\u001b[0m\n", "\u001b[32m2025-12-14 10:59:22.970\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.023 | Total tokens: 6366468 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 10:59:26.338\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.023 | Total tokens: 6367388 | Current cost: $0.000 | Current tokens: 920\u001b[0m\n", "{'name': 'error_handling8070', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 10:59:38.805\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.034 | Total tokens: 6439763 | Current cost: $0.011 | Current tokens: 72375\u001b[0m\n", "\u001b[32m2025-12-14 10:59:41.113\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.034 | Total tokens: 6439903 | Current cost: $0.000 | Current tokens: 140\u001b[0m\n", "\u001b[32m2025-12-14 10:59:43.697\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.035 | Total tokens: 6440808 | Current cost: $0.000 | Current tokens: 905\u001b[0m\n", "\u001b[32m2025-12-14 10:59:43.698\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['context_handle2248', 'answer_generate', 'validation_mechanism6354', 'error_handling8070']\u001b[0m\n", "\u001b[32m2025-12-14 10:59:43.699\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 4 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<02:56, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:06<02:42, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:09<02:25, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.13333333333333336, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:11<02:01, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:14<02:04, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:16<01:52, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:18<01:43, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:22<02:05, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:26<02:12, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:31<02:21, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:35<02:34, 3.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:39<02:23, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:42<02:16, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:47<02:20, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:52<02:29, 4.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:55<02:12, 3.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:59<02:08, 3.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:02<01:54, 3.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:04<01:44, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:06<01:27, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:09<01:20, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:11<01:15, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:17<01:36, 3.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:20<01:29, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:22<01:18, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:26<01:15, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:29<01:15, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:34<01:19, 3.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.052631578947368425, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:38<01:18, 3.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:41<01:09, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:44<01:05, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:47<00:59, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:51<00:58, 3.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:55<01:00, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:59<00:57, 3.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:03<00:51, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:06<00:46, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:11<00:47, 3.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:13<00:38, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:16<00:32, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:21<00:34, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:25<00:31, 3.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:29<00:26, 3.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:33<00:23, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.18181818181818182, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:38<00:21, 4.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:41<00:15, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:43<00:10, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:52<00:09, 4.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:54<00:04, 4.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:58<00:00, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:02:42.149\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 4 metrics: {'f1': 0.6792641476614313, 'em': 0.48, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:02:52.479\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.064 | Total tokens: 6617973 | Current cost: $0.011 | Current tokens: 72365\u001b[0m\n", "\u001b[32m2025-12-14 11:02:59.919\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.075 | Total tokens: 6690179 | Current cost: $0.011 | Current tokens: 72206\u001b[0m\n", "\u001b[32m2025-12-14 11:03:09.534\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.086 | Total tokens: 6762480 | Current cost: $0.011 | Current tokens: 72301\u001b[0m\n", "\u001b[32m2025-12-14 11:03:12.386\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.086 | Total tokens: 6763806 | Current cost: $0.000 | Current tokens: 1326\u001b[0m\n", "The code generation workflow exhibits several critical issues that hinder its accuracy and effectiveness, including a lack of contextual understanding, inconsistent output formatting, and over-reliance on keyword matching, which leads to misinterpretations of questions. Additionally, the system struggles with ambiguous queries and fails to incorporate feedback for iterative learning, resulting in a high rate of incorrect predictions. The training data is also insufficiently diverse, limiting the model's adaptability to various topics. Overall, these structural flaws necessitate significant improvements in contextual comprehension, error handling, and the ability to learn from past interactions to enhance performance.\n", "\u001b[32m2025-12-14 11:03:14.491\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.087 | Total tokens: 6764248 | Current cost: $0.000 | Current tokens: 442\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'answer_generate', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'contextual_understanding', 'args': ['question'], 'outputs': ['context']},\n", " {'name': 'feedback_incorporation', 'args': ['context', 'answer'], 'outputs': ['improved_answer']}\n", "]\n", "```\n", "inputname contextual_understanding\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'contextual_understanding', 'args': ['question'], 'outputs': ['context']}\n", "-1\n", "inputname feedback_incorporation\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'feedback_incorporation', 'args': ['context', 'answer'], 'outputs': ['improved_answer']}\n", "-1\n", "\u001b[32m2025-12-14 11:03:14.492\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding3625', 'feedback_incorporation2376']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for Gesellschaft mit beschränkter Haftung.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was the first governor after the Missouri Compromise, and he was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Rémi Lange is French, not American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and have been translated into every major living language and performed worldwide.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: David J. C. MacKay\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album that includes the song \"Speed of Sound\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: \"Sarah Kerrigan, the Queen of Blades\"\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'answer_generate', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:03:34.843\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.098 | Total tokens: 6836602 | Current cost: $0.011 | Current tokens: 72354\u001b[0m\n", "\u001b[32m2025-12-14 11:03:37.472\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.098 | Total tokens: 6836740 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 11:03:39.442\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.098 | Total tokens: 6837981 | Current cost: $0.000 | Current tokens: 1241\u001b[0m\n", "{'name': 'contextual_understanding3625', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:03:49.450\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.109 | Total tokens: 6910209 | Current cost: $0.011 | Current tokens: 72228\u001b[0m\n", "\u001b[32m2025-12-14 11:03:51.199\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.109 | Total tokens: 6910342 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:03:53.963\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.109 | Total tokens: 6911088 | Current cost: $0.000 | Current tokens: 746\u001b[0m\n", "{'name': 'feedback_incorporation2376', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:04:05.284\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.120 | Total tokens: 6983453 | Current cost: $0.011 | Current tokens: 72365\u001b[0m\n", "\u001b[32m2025-12-14 11:04:06.963\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.120 | Total tokens: 6983595 | Current cost: $0.000 | Current tokens: 142\u001b[0m\n", "\u001b[32m2025-12-14 11:04:09.499\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.120 | Total tokens: 6984452 | Current cost: $0.000 | Current tokens: 857\u001b[0m\n", "\u001b[32m2025-12-14 11:04:09.499\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding3625', 'feedback_incorporation2376']\u001b[0m\n", "\u001b[32m2025-12-14 11:04:09.501\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 5 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:05<04:48, 5.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:10<04:01, 5.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:12<02:52, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:17<03:22, 4.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:21<03:11, 4.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:24<02:44, 3.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:28<02:40, 3.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:31<02:24, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:37<02:57, 4.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:40<02:39, 3.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:44<02:32, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:47<02:16, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:50<02:08, 3.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:53<01:56, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:57<01:59, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [01:00<02:02, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [01:04<01:55, 3.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:08<01:56, 3.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:12<01:58, 3.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:14<01:41, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:17<01:29, 3.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:20<01:25, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:25<01:41, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.1875, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:29<01:35, 3.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:31<01:23, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:34<01:17, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:37<01:13, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:42<01:21, 3.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.05714285714285715, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:45<01:15, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:48<01:07, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:52<01:04, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:54<00:57, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:58<00:58, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [02:02<00:55, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:07<00:56, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:11<00:53, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:16<00:58, 4.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:24<01:03, 5.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:27<00:51, 4.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:30<00:41, 4.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:33<00:33, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:36<00:28, 3.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:39<00:24, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:43<00:21, 3.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.23529411764705882, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:46<00:16, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:49<00:13, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:52<00:09, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:57<00:07, 3.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [03:00<00:03, 3.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [03:04<00:00, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:07:13.709\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 5 metrics: {'f1': 0.6836362575333164, 'em': 0.46, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:07:28.876\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.150 | Total tokens: 7161639 | Current cost: $0.011 | Current tokens: 72341\u001b[0m\n", "\u001b[32m2025-12-14 11:07:39.432\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.161 | Total tokens: 7233953 | Current cost: $0.011 | Current tokens: 72314\u001b[0m\n", "\u001b[32m2025-12-14 11:07:48.775\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.172 | Total tokens: 7306174 | Current cost: $0.011 | Current tokens: 72221\u001b[0m\n", "\u001b[32m2025-12-14 11:07:51.871\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.172 | Total tokens: 7307521 | Current cost: $0.000 | Current tokens: 1347\u001b[0m\n", "The code generation workflow exhibits several critical issues, including a lack of contextual understanding, leading to incorrect predictions; inconsistent output formatting, resulting in confusion; and inadequate handling of ambiguities in questions, which can yield multiple interpretations. Additionally, the agent relies heavily on keyword matching rather than grasping the semantic meaning of queries, and its prediction logic often fails to account for variations in phrasing. There is also a lack of robust error handling and feedback mechanisms, which prevents learning from mistakes, while the scoring system does not accurately reflect prediction quality. Overall, substantial improvements are needed in contextual comprehension, output consistency, and predictive accuracy to enhance the effectiveness of the code generation process.\n", "\u001b[32m2025-12-14 11:07:56.498\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.172 | Total tokens: 7308074 | Current cost: $0.000 | Current tokens: 553\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'answer_generate', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'contextual_understanding', 'args': ['question'], 'outputs': ['context']},\n", " {'name': 'output_formatting', 'args': ['answer'], 'outputs': ['formatted_answer']},\n", " {'name': 'ambiguity_handling', 'args': ['question'], 'outputs': ['resolved_question']},\n", " {'name': 'semantic_analysis', 'args': ['resolved_question'], 'outputs': ['semantic_understanding']},\n", " {'name': 'error_handling', 'args': ['formatted_answer'], 'outputs': ['error_checked_answer']},\n", " {'name': 'feedback_mechanism', 'args': ['error_checked_answer'], 'outputs': ['final_answer']}\n", "]\n", "```\n", "inputname contextual_understanding\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'contextual_understanding', 'args': ['question'], 'outputs': ['context']}\n", "-1\n", "inputname output_formatting\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'output_formatting', 'args': ['answer'], 'outputs': ['formatted_answer']}\n", "-1\n", "inputname ambiguity_handling\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'ambiguity_handling', 'args': ['question'], 'outputs': ['resolved_question']}\n", "-1\n", "inputname semantic_analysis\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'semantic_analysis', 'args': ['resolved_question'], 'outputs': ['semantic_understanding']}\n", "-1\n", "inputname error_handling\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'error_handling', 'args': ['formatted_answer'], 'outputs': ['error_checked_answer']}\n", "-1\n", "inputname feedback_mechanism\n", "correct_list ['answer_generate']\n", "['answer_generate']\n", "{'name': 'feedback_mechanism', 'args': ['error_checked_answer'], 'outputs': ['final_answer']}\n", "-1\n", "\u001b[32m2025-12-14 11:07:56.501\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding4378', 'output_formatting574', 'ambiguity_handling5585', 'semantic_analysis8949', 'error_handling8134', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for Gesellschaft mit beschränkter Haftung.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: failed coup attempt by Nazi agents\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, only Darren Benjamin Shepherd is American; Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is currently owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are presented as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and they have been widely translated and performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: Read It and Weep\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Sam Kelly was best known for his role as Captain Hans Geering in \"'Allo 'Allo!\".\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: The Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: \"Sarah Kerrigan, the Queen of Blades\"\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'answer_generate', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:08:07.817\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.183 | Total tokens: 7380524 | Current cost: $0.011 | Current tokens: 72450\u001b[0m\n", "\u001b[32m2025-12-14 11:08:10.647\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.183 | Total tokens: 7380659 | Current cost: $0.000 | Current tokens: 135\u001b[0m\n", "\u001b[32m2025-12-14 11:08:13.382\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.184 | Total tokens: 7382096 | Current cost: $0.000 | Current tokens: 1437\u001b[0m\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:08:23.535\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.195 | Total tokens: 7454409 | Current cost: $0.011 | Current tokens: 72313\u001b[0m\n", "\u001b[32m2025-12-14 11:08:25.875\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.195 | Total tokens: 7454548 | Current cost: $0.000 | Current tokens: 139\u001b[0m\n", "\u001b[32m2025-12-14 11:08:27.905\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.195 | Total tokens: 7455367 | Current cost: $0.000 | Current tokens: 819\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:08:40.173\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.206 | Total tokens: 7527856 | Current cost: $0.011 | Current tokens: 72489\u001b[0m\n", "\u001b[32m2025-12-14 11:08:41.705\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.206 | Total tokens: 7527990 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:08:43.514\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.206 | Total tokens: 7528983 | Current cost: $0.000 | Current tokens: 993\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:08:57.482\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.217 | Total tokens: 7601448 | Current cost: $0.011 | Current tokens: 72465\u001b[0m\n", "\u001b[32m2025-12-14 11:08:59.986\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.217 | Total tokens: 7601582 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:09:01.364\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.217 | Total tokens: 7602517 | Current cost: $0.000 | Current tokens: 935\u001b[0m\n", "{'name': 'semantic_analysis8949', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:09:12.425\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.228 | Total tokens: 7674894 | Current cost: $0.011 | Current tokens: 72377\u001b[0m\n", "\u001b[32m2025-12-14 11:09:13.789\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.228 | Total tokens: 7675027 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:09:15.598\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.229 | Total tokens: 7675910 | Current cost: $0.000 | Current tokens: 883\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:09:26.955\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.240 | Total tokens: 7748338 | Current cost: $0.011 | Current tokens: 72428\u001b[0m\n", "\u001b[32m2025-12-14 11:09:28.539\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.240 | Total tokens: 7748480 | Current cost: $0.000 | Current tokens: 142\u001b[0m\n", "\u001b[32m2025-12-14 11:09:31.373\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.240 | Total tokens: 7749407 | Current cost: $0.000 | Current tokens: 927\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': None, 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:09:40.819\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.251 | Total tokens: 7821759 | Current cost: $0.011 | Current tokens: 72352\u001b[0m\n", "\u001b[32m2025-12-14 11:09:42.452\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.251 | Total tokens: 7821903 | Current cost: $0.000 | Current tokens: 144\u001b[0m\n", "\u001b[32m2025-12-14 11:09:44.617\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.251 | Total tokens: 7822754 | Current cost: $0.000 | Current tokens: 851\u001b[0m\n", "\u001b[32m2025-12-14 11:09:44.618\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding4378', 'output_formatting574', 'ambiguity_handling5585', 'semantic_analysis8949', 'error_handling8134', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:09:44.619\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 6 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:29, 4.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4444444444444445, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:08<03:19, 4.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:10<02:32, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:13<02:30, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:17<02:28, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:22<02:49, 3.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.375, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:24<02:28, 3.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:27<02:19, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:31<02:16, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:35<02:21, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:38<02:15, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:42<02:21, 3.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:45<02:10, 3.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:48<01:54, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:51<01:53, 3.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:54<01:47, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:58<01:56, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:01<01:43, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:04<01:40, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:06<01:28, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:09<01:21, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:13<01:24, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:17<01:32, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19999999999999998, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:20<01:24, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:23<01:20, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:27<01:22, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:32<01:31, 3.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:42<02:05, 5.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:46<01:47, 5.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:48<01:24, 4.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:50<01:10, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:53<01:00, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:56<00:54, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [02:00<00:56, 3.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:04<00:54, 3.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:06<00:46, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:10<00:44, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:14<00:43, 3.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:17<00:39, 3.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:20<00:33, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:23<00:28, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:25<00:22, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:28<00:19, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:31<00:16, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:38<00:20, 4.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:41<00:15, 3.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:43<00:09, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:46<00:06, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:49<00:03, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:54<00:00, 3.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:12:39.419\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 6 metrics: {'f1': 0.702883022774327, 'em': 0.52, 'acc': 0.78}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:12:39.420\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['answer_generate', 'contextual_understanding4378', 'output_formatting574', 'ambiguity_handling5585', 'semantic_analysis8949', 'error_handling8134', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:12:48.641\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.281 | Total tokens: 7999864 | Current cost: $0.011 | Current tokens: 72329\u001b[0m\n", "\u001b[32m2025-12-14 11:13:04.098\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.292 | Total tokens: 8072195 | Current cost: $0.011 | Current tokens: 72331\u001b[0m\n", "\u001b[32m2025-12-14 11:13:11.132\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.303 | Total tokens: 8144524 | Current cost: $0.011 | Current tokens: 72329\u001b[0m\n", "\u001b[32m2025-12-14 11:13:13.198\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.303 | Total tokens: 8145513 | Current cost: $0.000 | Current tokens: 989\u001b[0m\n", "The workflow exhibits several issues: redundancy in steps generating the same output ('answer'), unclear distinctions between overlapping functionalities of steps like 'answer_generate' and 'contextual_understanding', unnecessary complexity from ambiguity handling for all questions, vague error handling that fails to address various types of errors effectively, and a feedback mechanism lacking a clear strategy for utilizing feedback to enhance future predictions.\n", "\u001b[32m2025-12-14 11:13:16.512\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.303 | Total tokens: 8146101 | Current cost: $0.000 | Current tokens: 588\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:13:16.513\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung,\" which means \"limited liability company\" in English.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: Engelbert Dollfuss was assassinated as part of a failed coup attempt by Nazi agents.\n", "Solutions: a failed coup attempt\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Darren Benjamin Shepherd is American, but Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners men's basketball\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: \"Sam Boyd Stadium\"\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, owned by Simon Property Group. It opened in 2000 on the former site of the Opryland USA theme park.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: \"No, Coldplay and Pierre Bouvier are not from the same country.\"\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as among the greatest in the English language and Western literature, traditionally divided into tragedy, history, and comedy, and they have been translated into every major living language and are continually performed worldwide.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann, 1st Viscount Cherwell\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: The Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 2-th task:\\n\"\"\"\\nThink step by step to answer the question `{question}` based on the provided context. You should explain your thinking process in the \\'thought\\' field, and provide the final answer in the \\'answer\\' field. Ensure that your response is clear and follows the expected output format. Format your output in xml format, such as xxx and xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:13:27.684\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.314 | Total tokens: 8218449 | Current cost: $0.011 | Current tokens: 72348\u001b[0m\n", "\u001b[32m2025-12-14 11:13:30.262\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.314 | Total tokens: 8218587 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 11:13:31.766\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.314 | Total tokens: 8219541 | Current cost: $0.000 | Current tokens: 954\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field. Format your output in xml format, such as {input_name} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:13:43.209\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.325 | Total tokens: 8291886 | Current cost: $0.011 | Current tokens: 72345\u001b[0m\n", "\u001b[32m2025-12-14 11:13:44.839\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.325 | Total tokens: 8292020 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:13:46.511\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.325 | Total tokens: 8292904 | Current cost: $0.000 | Current tokens: 884\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, and provide the final answer in the \\'answer\\' field. Ensure that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Format your output in xml format, such as {thought} and {answer}.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:13:59.761\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.336 | Total tokens: 8365339 | Current cost: $0.011 | Current tokens: 72435\u001b[0m\n", "\u001b[32m2025-12-14 11:14:01.376\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.336 | Total tokens: 8365472 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:14:03.698\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.337 | Total tokens: 8366500 | Current cost: $0.000 | Current tokens: 1028\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 3-th task:\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, and provide the final answer in the \\'answer\\' field. Ensure that your response is based on the relevant context provided and that the question is clear and unambiguous. Format your output in xml format, such as {thought} and {answer}.\\n\"\"\" \\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:14:16.186\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.348 | Total tokens: 8438905 | Current cost: $0.011 | Current tokens: 72405\u001b[0m\n", "\u001b[32m2025-12-14 11:14:18.261\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.348 | Total tokens: 8439047 | Current cost: $0.000 | Current tokens: 142\u001b[0m\n", "\u001b[32m2025-12-14 11:14:19.904\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.348 | Total tokens: 8440060 | Current cost: $0.000 | Current tokens: 1013\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. Format your output in xml format, such as {thought} and {answer}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:14:36.404\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.359 | Total tokens: 8512475 | Current cost: $0.011 | Current tokens: 72415\u001b[0m\n", "\u001b[32m2025-12-14 11:14:38.654\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.359 | Total tokens: 8512609 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:14:41.075\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.359 | Total tokens: 8513627 | Current cost: $0.000 | Current tokens: 1018\u001b[0m\n", "\u001b[32m2025-12-14 11:14:41.076\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:14:41.076\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 7 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<02:27, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:07<02:59, 3.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:10<02:37, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:12<02:23, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:17<02:36, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:19<02:20, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:22<02:07, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:25<02:11, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:29<02:23, 3.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:33<02:21, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:37<02:27, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:41<02:17, 3.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:44<02:12, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:47<02:03, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:51<02:02, 3.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:54<01:54, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:58<02:01, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:01<01:44, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:05<01:46, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:07<01:36, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:10<01:27, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:12<01:20, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:20<01:53, 4.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:23<01:42, 3.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:27<01:36, 3.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:29<01:25, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:32<01:16, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:37<01:24, 3.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.049999999999999996, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:42<01:28, 4.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:45<01:13, 3.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:47<01:02, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:50<00:54, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:53<00:51, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:57<00:56, 3.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:00<00:50, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:03<00:45, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:08<00:48, 3.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.35294117647058826, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:14<00:51, 4.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:17<00:44, 4.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:20<00:36, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:24<00:32, 3.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:26<00:26, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:29<00:22, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:41<00:34, 5.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:48<00:30, 6.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:51<00:21, 5.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:54<00:13, 4.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:58<00:08, 4.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [03:00<00:03, 3.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [03:03<00:00, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:17:44.890\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 7 metrics: {'f1': 0.7061858299186902, 'em': 0.54, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:17:44.890\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:18:00.045\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.389 | Total tokens: 8690823 | Current cost: $0.011 | Current tokens: 72285\u001b[0m\n", "\u001b[32m2025-12-14 11:18:21.693\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.400 | Total tokens: 8763234 | Current cost: $0.011 | Current tokens: 72411\u001b[0m\n", "\u001b[32m2025-12-14 11:18:38.398\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.411 | Total tokens: 8835490 | Current cost: $0.011 | Current tokens: 72256\u001b[0m\n", "\u001b[32m2025-12-14 11:18:41.229\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.411 | Total tokens: 8836624 | Current cost: $0.000 | Current tokens: 1134\u001b[0m\n", "The workflow for code generation exhibits several critical issues: it contains redundant steps that all produce the same output ('answer') without clear differentiation, leading to inefficiencies and confusion; lacks specificity in handling various question types and contexts; has an ineffective error handling mechanism that does not address specific failures; features a vague feedback mechanism that does not guide improvements; and fails to establish a structured output management system, risking ambiguity in final answers. Additionally, it does not accommodate dynamic inputs or retain contextual memory, limiting adaptability and effectiveness in multi-turn interactions. Overall, a more coherent structure with defined roles, better output management, and mechanisms for feedback and evaluation is necessary for improvement.\n", "\u001b[32m2025-12-14 11:18:46.217\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.411 | Total tokens: 8837228 | Current cost: $0.000 | Current tokens: 604\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:18:46.219\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: Gesellschaft mit beschränkter Haftung\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: failed coup attempt by Nazi agents\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Darren Benjamin Shepherd is American, but Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and they have been translated into every major living language and are performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Sam Kelly, best known for his role as Captain Hans Geering in \"'Allo 'Allo!\".\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann, 1st Viscount Cherwell\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Interscope Records\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y,\" which includes the song \"Speed of Sound,\" is a combination of colors and blocks, representing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, Duke Energy is based in North Carolina, while Affiliated Managers Group is based in Massachusetts.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nThink step by step to answer the question `{question}` based on the provided context. You should explain your thinking process in the \\'thought\\' field, and provide the final answer in the \\'answer\\' field. Ensure that your response is clear and follows the expected output format. Format your output in xml format, such as xxx and xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:19:02.611\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.422 | Total tokens: 8909615 | Current cost: $0.011 | Current tokens: 72387\u001b[0m\n", "\u001b[32m2025-12-14 11:19:05.309\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.422 | Total tokens: 8909748 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:19:08.134\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.422 | Total tokens: 8910787 | Current cost: $0.000 | Current tokens: 1039\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:19:18.848\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.433 | Total tokens: 8983158 | Current cost: $0.011 | Current tokens: 72371\u001b[0m\n", "\u001b[32m2025-12-14 11:19:21.854\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.433 | Total tokens: 8983299 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 11:19:24.277\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.434 | Total tokens: 8984365 | Current cost: $0.000 | Current tokens: 1066\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field. Format your output in xml format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:19:47.154\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.445 | Total tokens: 9056787 | Current cost: $0.011 | Current tokens: 72422\u001b[0m\n", "\u001b[32m2025-12-14 11:19:49.947\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.445 | Total tokens: 9056930 | Current cost: $0.000 | Current tokens: 143\u001b[0m\n", "\u001b[32m2025-12-14 11:19:51.916\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.445 | Total tokens: 9057975 | Current cost: $0.000 | Current tokens: 1045\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear and directly addresses the question without ambiguity. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:20:04.499\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.456 | Total tokens: 9130371 | Current cost: $0.011 | Current tokens: 72396\u001b[0m\n", "\u001b[32m2025-12-14 11:20:07.263\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.456 | Total tokens: 9130504 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:20:10.011\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.456 | Total tokens: 9131597 | Current cost: $0.000 | Current tokens: 1093\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, and provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Make sure to address any ambiguity in the question and ensure that the context is sufficient to derive an accurate answer.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:20:28.404\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.467 | Total tokens: 9204002 | Current cost: $0.011 | Current tokens: 72405\u001b[0m\n", "\u001b[32m2025-12-14 11:20:32.497\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.467 | Total tokens: 9204143 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 11:20:35.078\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.468 | Total tokens: 9205264 | Current cost: $0.000 | Current tokens: 1121\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:20:35.079\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:20:35.080\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 8 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:42, 4.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:10<04:04, 5.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:12<03:13, 4.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:18<03:33, 4.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:21<03:04, 4.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:26<03:07, 4.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.375, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:29<02:43, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:32<02:39, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:37<02:49, 4.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:43<03:01, 4.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:45<02:33, 3.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:49<02:23, 3.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:52<02:13, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:55<02:09, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:59<02:09, 3.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [01:03<02:07, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [01:07<02:06, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:10<01:55, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:13<01:41, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:15<01:27, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:18<01:28, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:21<01:23, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:26<01:38, 3.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:29<01:29, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:32<01:23, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:35<01:16, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:42<01:40, 4.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:49<01:51, 5.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.0392156862745098, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:52<01:31, 4.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:54<01:15, 3.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:57<01:03, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:59<00:55, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [02:02<00:51, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [02:06<00:54, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:10<00:54, 3.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:14<00:49, 3.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:18<00:50, 3.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:25<00:57, 4.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:31<00:54, 5.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:34<00:43, 4.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:36<00:35, 3.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:39<00:27, 3.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:41<00:22, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:44<00:18, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.23529411764705882, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:49<00:18, 3.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:53<00:14, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:56<00:10, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:59<00:06, 3.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [03:02<00:03, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [03:06<00:00, 3.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:23:41.316\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 8 metrics: {'f1': 0.7448034437626467, 'em': 0.56, 'acc': 0.78}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:23:41.317\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:23:54.114\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.497 | Total tokens: 9382491 | Current cost: $0.011 | Current tokens: 72288\u001b[0m\n", "\u001b[32m2025-12-14 11:24:06.313\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.508 | Total tokens: 9454775 | Current cost: $0.011 | Current tokens: 72284\u001b[0m\n", "\u001b[32m2025-12-14 11:24:16.342\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.519 | Total tokens: 9527091 | Current cost: $0.011 | Current tokens: 72316\u001b[0m\n", "\u001b[32m2025-12-14 11:24:18.556\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.519 | Total tokens: 9528142 | Current cost: $0.000 | Current tokens: 1051\u001b[0m\n", "The identified issues across the workflows include redundancy in steps that overlap in functionality, leading to inefficiency; a lack of specificity in handling diverse question types, which may result in misinterpretations; unclear output differentiation, causing confusion about each step's purpose; ineffective error handling without clear identification or correction processes; and the absence of a validation step to ensure answer correctness. Additionally, the feedback mechanism is poorly integrated, lacking clarity on how it contributes to future improvements, and there is an over-reliance on context that may not always suffice for accurate responses.\n", "\u001b[32m2025-12-14 11:24:20.778\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.519 | Total tokens: 9528725 | Current cost: $0.000 | Current tokens: 583\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:24:20.779\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung.\"\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both Woman's Era and Naj are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: Engelbert Dollfuss was assassinated as part of a failed coup attempt by Nazi agents.\n", "Solutions: a failed coup attempt\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Juliet\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: \"No, Coldplay and Pierre Bouvier are not from the same country.\"\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare, who lived from 1564 to 1616, is renowned for his plays, which are considered among the greatest in the English language. His works are traditionally categorized into the genres of tragedy, history, and comedy, and they have been translated into every major living language, being performed worldwide.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:24:44.387\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.530 | Total tokens: 9601123 | Current cost: $0.011 | Current tokens: 72398\u001b[0m\n", "\u001b[32m2025-12-14 11:24:46.304\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.531 | Total tokens: 9601256 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:24:47.999\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.531 | Total tokens: 9602408 | Current cost: $0.000 | Current tokens: 1152\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:24:59.787\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.542 | Total tokens: 9674768 | Current cost: $0.011 | Current tokens: 72360\u001b[0m\n", "\u001b[32m2025-12-14 11:25:01.905\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.542 | Total tokens: 9674901 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:25:04.176\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.542 | Total tokens: 9675988 | Current cost: $0.000 | Current tokens: 1087\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:25:26.867\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.553 | Total tokens: 9748414 | Current cost: $0.011 | Current tokens: 72426\u001b[0m\n", "\u001b[32m2025-12-14 11:25:28.475\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.553 | Total tokens: 9748547 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:25:31.616\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.553 | Total tokens: 9749817 | Current cost: $0.000 | Current tokens: 1270\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:26:05.403\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.564 | Total tokens: 9822166 | Current cost: $0.011 | Current tokens: 72349\u001b[0m\n", "\u001b[32m2025-12-14 11:26:07.263\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.564 | Total tokens: 9822299 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:26:10.192\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.565 | Total tokens: 9823518 | Current cost: $0.000 | Current tokens: 1219\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:26:21.605\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.576 | Total tokens: 9895877 | Current cost: $0.011 | Current tokens: 72359\u001b[0m\n", "\u001b[32m2025-12-14 11:26:23.187\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.576 | Total tokens: 9896011 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:26:26.538\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.576 | Total tokens: 9897254 | Current cost: $0.000 | Current tokens: 1243\u001b[0m\n", "\u001b[32m2025-12-14 11:26:26.539\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:26:26.539\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 9 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:48, 4.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4210526315789474, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:08<03:23, 4.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:10<02:30, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:13<02:22, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:16<02:21, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:18<02:04, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:20<01:47, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:24<01:59, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:28<02:09, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:31<02:05, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:34<02:01, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:37<02:03, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:40<01:53, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:43<01:50, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:46<01:46, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:49<01:43, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:53<01:47, 3.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:57<01:48, 3.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:59<01:38, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:02<01:27, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:04<01:22, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:07<01:20, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:12<01:29, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19999999999999998, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:14<01:19, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:17<01:12, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:20<01:13, 3.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:23<01:11, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:28<01:20, 3.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.0588235294117647, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:31<01:12, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:33<01:00, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:36<00:55, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:39<00:52, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:42<00:52, 3.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:46<00:52, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:51<00:55, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:54<00:48, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:58<00:49, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:02<00:47, 3.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.22222222222222224, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:05<00:39, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:09<00:35, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:11<00:29, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:13<00:23, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:16<00:19, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:19<00:17, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.18181818181818182, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:23<00:15, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:26<00:13, 3.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:29<00:09, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:32<00:06, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:38<00:03, 3.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:51<00:00, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:29:17.868\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 9 metrics: {'f1': 0.7166942043164951, 'em': 0.52, 'acc': 0.74}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:29:17.869\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:29:23.887\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.605 | Total tokens: 10074125 | Current cost: $0.011 | Current tokens: 72255\u001b[0m\n", "\u001b[32m2025-12-14 11:29:31.998\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.616 | Total tokens: 10146385 | Current cost: $0.011 | Current tokens: 72260\u001b[0m\n", "\u001b[32m2025-12-14 11:29:38.188\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.627 | Total tokens: 10218612 | Current cost: $0.011 | Current tokens: 72227\u001b[0m\n", "\u001b[32m2025-12-14 11:29:41.113\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.627 | Total tokens: 10219513 | Current cost: $0.000 | Current tokens: 901\u001b[0m\n", "The identified issues across the workflows include redundancy between 'error_handling8134' and 'ambiguity_handling5585', a lack of clarity in 'contextual_understanding4378' and 'output_formatting574', which may lead to misinterpretation and inadequate handling of diverse answer formats. Additionally, the feedback mechanism lacks specificity on how feedback is utilized for improvement, and there is no validation step for answer correctness or a system to track the context of previous questions, potentially resulting in inconsistencies and circular dependencies in responses.\n", "\u001b[32m2025-12-14 11:29:43.656\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.628 | Total tokens: 10220092 | Current cost: $0.000 | Current tokens: 579\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:29:43.657\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung,\" which means \"company with limited liability\" in German.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: failed coup attempt by Nazi agents\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, they are not both American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: German culture\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, owned by Simon Property Group. It opened in 2000 on the site of the former Opryland USA theme park.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are presented as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and are widely translated and performed around the world.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann and David J. C. MacKay\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Interscope Records\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album that includes the song \"Speed of Sound\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: The Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:29:54.740\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.639 | Total tokens: 10292459 | Current cost: $0.011 | Current tokens: 72367\u001b[0m\n", "\u001b[32m2025-12-14 11:29:56.086\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.639 | Total tokens: 10292592 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:29:57.566\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.639 | Total tokens: 10293775 | Current cost: $0.000 | Current tokens: 1183\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:30:08.836\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.650 | Total tokens: 10366142 | Current cost: $0.011 | Current tokens: 72367\u001b[0m\n", "\u001b[32m2025-12-14 11:30:10.559\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.650 | Total tokens: 10366275 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:30:15.026\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.650 | Total tokens: 10367442 | Current cost: $0.000 | Current tokens: 1167\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:30:25.491\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.661 | Total tokens: 10439770 | Current cost: $0.011 | Current tokens: 72328\u001b[0m\n", "\u001b[32m2025-12-14 11:30:27.264\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.661 | Total tokens: 10439904 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:30:29.858\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.661 | Total tokens: 10441181 | Current cost: $0.000 | Current tokens: 1277\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:30:48.108\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.673 | Total tokens: 10513612 | Current cost: $0.011 | Current tokens: 72431\u001b[0m\n", "\u001b[32m2025-12-14 11:30:50.666\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.673 | Total tokens: 10513745 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:30:53.672\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.673 | Total tokens: 10515168 | Current cost: $0.000 | Current tokens: 1423\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:31:20.533\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.684 | Total tokens: 10587571 | Current cost: $0.011 | Current tokens: 72403\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:31:22.704\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.684 | Total tokens: 10587705 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:31:25.613\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.684 | Total tokens: 10589126 | Current cost: $0.000 | Current tokens: 1421\u001b[0m\n", "\u001b[32m2025-12-14 11:31:25.614\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:31:25.615\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 10 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<04:03, 4.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4210526315789474, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:10<04:04, 5.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:12<03:00, 3.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:16<03:01, 3.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:21<03:11, 4.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:23<02:37, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:26<02:25, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:30<02:26, 3.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:33<02:15, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:40<02:59, 4.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:43<02:43, 4.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:48<02:41, 4.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:51<02:27, 3.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:55<02:18, 3.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:59<02:20, 4.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [01:03<02:17, 4.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [01:07<02:11, 3.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:13<02:30, 4.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:16<02:08, 4.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:21<02:05, 4.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:24<01:55, 4.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:27<01:43, 3.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:36<02:17, 5.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.1875, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:39<02:01, 4.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:42<01:39, 3.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:44<01:25, 3.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:47<01:14, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:53<01:28, 4.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:55<01:16, 3.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:57<01:04, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [02:00<00:59, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [02:03<00:51, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [02:07<00:54, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [02:11<00:55, 3.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:14<00:51, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:17<00:46, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:23<00:52, 4.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.35294117647058826, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:29<00:56, 4.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.16666666666666669, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:31<00:43, 3.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:35<00:38, 3.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:39<00:35, 3.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:43<00:31, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:45<00:23, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:49<00:21, 3.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.15384615384615385, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:54<00:19, 3.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:57<00:15, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:59<00:09, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [03:03<00:06, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [03:05<00:03, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [03:09<00:00, 3.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:34:35.470\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 10 metrics: {'f1': 0.6823226722537867, 'em': 0.5, 'acc': 0.78}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:34:35.471\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:34:41.001\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.714 | Total tokens: 10766490 | Current cost: $0.011 | Current tokens: 72304\u001b[0m\n", "\u001b[32m2025-12-14 11:34:46.876\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.725 | Total tokens: 10838735 | Current cost: $0.011 | Current tokens: 72245\u001b[0m\n", "\u001b[32m2025-12-14 11:34:52.751\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.736 | Total tokens: 10910991 | Current cost: $0.011 | Current tokens: 72256\u001b[0m\n", "\u001b[32m2025-12-14 11:34:57.198\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.736 | Total tokens: 10911956 | Current cost: $0.000 | Current tokens: 965\u001b[0m\n", "The workflow exhibits several issues: it contains redundant steps that process the same input and produce identical outputs, leading to inefficiency; lacks specificity in handling different question types, risking misinterpretation; has unclear error handling that does not define error identification or correction; ambiguity handling is poorly defined, potentially causing confusion; and the feedback mechanism does not clarify how feedback is used for improvement, which is essential for learning and adaptation. Additionally, there is a lack of distinct output handling, which may result in overwriting answers and confusion about their sources.\n", "\u001b[32m2025-12-14 11:34:59.706\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.736 | Total tokens: 10912536 | Current cost: $0.000 | Current tokens: 580\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:34:59.707\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung,\" which means \"company with limited liability\" in German.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines, specifically focusing on women's interests and lifestyles.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, they are not both American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners men's basketball\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: 10 January 1920\n", "Solutions: 10 January 1920\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is currently owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as among the greatest in the English language and Western literature, encompassing genres like tragedy, history, and comedy, and are widely translated and performed.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: \"Sam Kelly, best known for his role as Captain Hans Geering in \\\"'Allo 'Allo!\\\".\"\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann, 1st Viscount Cherwell and David J. C. MacKay\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: \"Mad Love\"\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents a combination of colors and blocks, which is a representation of the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:35:11.438\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.747 | Total tokens: 10984972 | Current cost: $0.011 | Current tokens: 72436\u001b[0m\n", "\u001b[32m2025-12-14 11:35:12.954\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.747 | Total tokens: 10985107 | Current cost: $0.000 | Current tokens: 135\u001b[0m\n", "\u001b[32m2025-12-14 11:35:15.354\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.747 | Total tokens: 10986370 | Current cost: $0.000 | Current tokens: 1263\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:35:24.803\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.758 | Total tokens: 11058759 | Current cost: $0.011 | Current tokens: 72389\u001b[0m\n", "\u001b[32m2025-12-14 11:35:26.884\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.758 | Total tokens: 11058895 | Current cost: $0.000 | Current tokens: 136\u001b[0m\n", "\u001b[32m2025-12-14 11:35:29.328\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.759 | Total tokens: 11060130 | Current cost: $0.000 | Current tokens: 1235\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:35:46.250\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.770 | Total tokens: 11132583 | Current cost: $0.011 | Current tokens: 72453\u001b[0m\n", "\u001b[32m2025-12-14 11:35:47.601\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.770 | Total tokens: 11132720 | Current cost: $0.000 | Current tokens: 137\u001b[0m\n", "\u001b[32m2025-12-14 11:35:51.832\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.770 | Total tokens: 11134192 | Current cost: $0.000 | Current tokens: 1472\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:36:06.618\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.781 | Total tokens: 11206674 | Current cost: $0.011 | Current tokens: 72482\u001b[0m\n", "\u001b[32m2025-12-14 11:36:07.844\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.781 | Total tokens: 11206813 | Current cost: $0.000 | Current tokens: 139\u001b[0m\n", "\u001b[32m2025-12-14 11:36:10.155\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.781 | Total tokens: 11208356 | Current cost: $0.000 | Current tokens: 1543\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:36:24.299\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.793 | Total tokens: 11280813 | Current cost: $0.011 | Current tokens: 72457\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:36:26.719\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.793 | Total tokens: 11280947 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:36:29.361\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.793 | Total tokens: 11282503 | Current cost: $0.000 | Current tokens: 1556\u001b[0m\n", "\u001b[32m2025-12-14 11:36:29.362\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:36:29.363\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 11 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<02:39, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:06<02:46, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:09<02:22, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.13333333333333336, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:11<02:01, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:14<02:02, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:17<02:09, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:21<02:18, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:24<02:10, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:26<01:57, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:29<01:59, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:32<01:53, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:35<01:47, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:37<01:42, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:40<01:41, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:45<01:55, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:48<01:53, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:52<01:58, 3.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:54<01:39, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:57<01:31, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [00:59<01:18, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:01<01:10, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:03<01:09, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:06<01:09, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:09<01:05, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:11<00:59, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:14<01:01, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:16<00:58, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:21<01:12, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.048780487804878044, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:23<01:02, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:25<00:54, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:27<00:47, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:30<00:44, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:32<00:41, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:35<00:41, 2.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:39<00:42, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:41<00:36, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:47<00:50, 3.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:51<00:44, 3.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [01:54<00:37, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [01:56<00:31, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:03<00:37, 4.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:09<00:39, 4.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:11<00:28, 4.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:14<00:22, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:17<00:16, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:20<00:13, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:23<00:09, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:25<00:05, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:27<00:02, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:30<00:00, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:39:00.005\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 11 metrics: {'f1': 0.701267118309878, 'em': 0.56, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:39:00.006\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:39:06.289\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.823 | Total tokens: 11459809 | Current cost: $0.011 | Current tokens: 72269\u001b[0m\n", "\u001b[32m2025-12-14 11:39:10.701\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.833 | Total tokens: 11532067 | Current cost: $0.011 | Current tokens: 72258\u001b[0m\n", "\u001b[32m2025-12-14 11:39:15.519\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.844 | Total tokens: 11604339 | Current cost: $0.011 | Current tokens: 72272\u001b[0m\n", "\u001b[32m2025-12-14 11:39:17.440\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.845 | Total tokens: 11605287 | Current cost: $0.000 | Current tokens: 948\u001b[0m\n", "The identified issues across the workflows include redundancy among steps, particularly between error handling and ambiguity handling, leading to inefficiency; a lack of clear distinctions in outputs, as all steps produce the same output ('answer'), causing confusion; ineffective feedback mechanisms that do not incorporate learnings from past errors; insufficient handling of context changes and varying question types, which may result in misinterpretation; and the potential for circular processing, where ambiguous or erroneous questions could lead to repetitive, unresolved cycles.\n", "\u001b[32m2025-12-14 11:39:19.428\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.845 | Total tokens: 11605856 | Current cost: $0.000 | Current tokens: 569\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:39:19.429\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for Gesellschaft mit beschränkter Haftung.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was the first governor after the Missouri Compromise, and he was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: as part of a failed coup attempt by Nazi agents.\n", "Solutions: a failed coup attempt\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, they are not both American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy given to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: \"Sam Boyd Stadium\"\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and they have been translated into every major living language and are continually performed worldwide.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: Read It and Weep\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Lesley Manville starred in \"Grown-Ups\", but she is not known for a role in \"'Allo 'Allo!\".\n", "Solutions: Captain Hans Geering\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann, 1st Viscount Cherwell\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: The Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:39:29.658\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.856 | Total tokens: 11678261 | Current cost: $0.011 | Current tokens: 72405\u001b[0m\n", "\u001b[32m2025-12-14 11:39:31.682\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.856 | Total tokens: 11678394 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:39:33.686\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.856 | Total tokens: 11679717 | Current cost: $0.000 | Current tokens: 1323\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:39:44.234\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.867 | Total tokens: 11752189 | Current cost: $0.011 | Current tokens: 72472\u001b[0m\n", "\u001b[32m2025-12-14 11:39:46.473\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.867 | Total tokens: 11752330 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 11:39:48.750\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.867 | Total tokens: 11753757 | Current cost: $0.000 | Current tokens: 1427\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:39:59.651\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.878 | Total tokens: 11826197 | Current cost: $0.011 | Current tokens: 72440\u001b[0m\n", "\u001b[32m2025-12-14 11:40:02.651\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.879 | Total tokens: 11826330 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:40:06.312\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.879 | Total tokens: 11827948 | Current cost: $0.000 | Current tokens: 1618\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:40:18.116\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.890 | Total tokens: 11900402 | Current cost: $0.011 | Current tokens: 72454\u001b[0m\n", "\u001b[32m2025-12-14 11:40:19.815\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.890 | Total tokens: 11900540 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 11:40:22.172\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.890 | Total tokens: 11902198 | Current cost: $0.000 | Current tokens: 1658\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:40:32.664\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.901 | Total tokens: 11974651 | Current cost: $0.011 | Current tokens: 72453\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:40:34.237\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.901 | Total tokens: 11974792 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 11:40:37.089\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.902 | Total tokens: 11976513 | Current cost: $0.000 | Current tokens: 1721\u001b[0m\n", "\u001b[32m2025-12-14 11:40:37.089\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:40:37.090\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 12 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:17, 4.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.34782608695652173, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:08<03:20, 4.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:10<02:37, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:12<02:12, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:15<02:01, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:17<01:48, 2.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:19<01:44, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:22<01:53, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:25<01:54, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:29<01:59, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:31<01:50, 2.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:34<01:44, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:36<01:31, 2.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:40<01:48, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.24000000000000002, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:44<01:52, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:46<01:43, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:52<02:06, 3.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:54<01:46, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:56<01:30, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [00:58<01:19, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:00<01:13, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:03<01:10, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:06<01:15, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:09<01:12, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:11<01:03, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:14<01:04, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:17<01:04, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:21<01:08, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.06451612903225806, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:24<01:03, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:27<01:00, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:29<00:53, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:32<00:49, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:35<00:50, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:40<00:54, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:44<00:55, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:47<00:48, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:51<00:46, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:54<00:42, 3.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [01:56<00:34, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:00<00:33, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:03<00:28, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:05<00:21, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:07<00:17, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:10<00:15, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:12<00:13, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:16<00:11, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:19<00:08, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:21<00:05, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:23<00:02, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:27<00:00, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:43:04.158\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 12 metrics: {'f1': 0.6738881364233397, 'em': 0.5, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:43:04.160\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:43:10.887\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.931 | Total tokens: 12153713 | Current cost: $0.011 | Current tokens: 72360\u001b[0m\n", "\u001b[32m2025-12-14 11:43:15.949\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.942 | Total tokens: 12225978 | Current cost: $0.011 | Current tokens: 72265\u001b[0m\n", "\u001b[32m2025-12-14 11:43:25.214\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.953 | Total tokens: 12298246 | Current cost: $0.011 | Current tokens: 72268\u001b[0m\n", "\u001b[32m2025-12-14 11:43:27.894\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.953 | Total tokens: 12299309 | Current cost: $0.000 | Current tokens: 1063\u001b[0m\n", "The workflow exhibits several structural issues that hinder its effectiveness, including redundant steps that overlap in functionality, a lack of clear input-output mapping, and inconsistent context handling, which can lead to incorrect predictions. Additionally, the error handling process is vague and does not specify how to identify or correct mistakes, while the feedback mechanism fails to incorporate learnings from past errors. Furthermore, the output formatting step lacks clarity on the expected structure, and there is no learning component to improve accuracy over time. Overall, a streamlined approach with defined relationships, effective error management, and a learning mechanism is essential for enhancing performance.\n", "\u001b[32m2025-12-14 11:43:30.429\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.954 | Total tokens: 12299901 | Current cost: $0.000 | Current tokens: 592\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:43:30.430\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung,\" which is a type of legal entity in Germany, Austria, Switzerland, and Liechtenstein.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both Woman's Era and Naj are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Rémi Lange is French, while Darren Benjamin Shepherd is American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Tara Strong voiced Juliet Starling in Lollipop Chainsaw, and she has done voice roles for the Teen Titans spinoff series Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language, have been translated into every major living language, and are continually performed around the world.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: \"Frederick Lindemann, 1st Viscount Cherwell\"\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code through a combination of colors and blocks.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, Duke Energy is based in North Carolina, while Affiliated Managers Group is based in Massachusetts.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: \"Sarah Kerrigan, the Queen of Blades\"\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:43:40.109\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.965 | Total tokens: 12372274 | Current cost: $0.011 | Current tokens: 72373\u001b[0m\n", "\u001b[32m2025-12-14 11:43:42.268\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.965 | Total tokens: 12372403 | Current cost: $0.000 | Current tokens: 129\u001b[0m\n", "\u001b[32m2025-12-14 11:43:43.750\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.965 | Total tokens: 12373762 | Current cost: $0.000 | Current tokens: 1359\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:43:53.279\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.976 | Total tokens: 12446197 | Current cost: $0.011 | Current tokens: 72435\u001b[0m\n", "\u001b[32m2025-12-14 11:43:55.534\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.976 | Total tokens: 12446330 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:43:57.427\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.976 | Total tokens: 12447810 | Current cost: $0.000 | Current tokens: 1480\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:44:09.330\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.987 | Total tokens: 12520196 | Current cost: $0.011 | Current tokens: 72386\u001b[0m\n", "\u001b[32m2025-12-14 11:44:10.970\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.987 | Total tokens: 12520329 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:44:13.916\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.988 | Total tokens: 12522033 | Current cost: $0.000 | Current tokens: 1704\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:44:21.737\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.998 | Total tokens: 12594275 | Current cost: $0.011 | Current tokens: 72242\u001b[0m\n", "\u001b[32m2025-12-14 11:44:22.962\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.998 | Total tokens: 12594408 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:44:25.479\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $1.999 | Total tokens: 12595970 | Current cost: $0.000 | Current tokens: 1562\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:44:36.830\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.010 | Total tokens: 12668424 | Current cost: $0.011 | Current tokens: 72454\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:44:38.332\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.010 | Total tokens: 12668565 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 11:44:40.965\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.010 | Total tokens: 12670425 | Current cost: $0.000 | Current tokens: 1860\u001b[0m\n", "\u001b[32m2025-12-14 11:44:40.965\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:44:40.966\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 13 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:02<02:07, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:06<02:51, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:09<02:35, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:12<02:17, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:15<02:17, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:18<02:14, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:21<02:03, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:24<02:03, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:26<01:51, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:30<02:07, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:32<01:51, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:36<01:55, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:39<01:56, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:42<01:50, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:45<01:50, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:48<01:44, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:52<01:52, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:54<01:36, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:56<01:23, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [00:59<01:17, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:01<01:14, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:04<01:10, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:08<01:19, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:10<01:14, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:12<01:06, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:15<01:02, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:18<01:03, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:23<01:15, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.06666666666666667, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:26<01:07, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:28<00:59, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:30<00:51, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:33<00:49, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:36<00:45, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:39<00:47, 2.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:43<00:47, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:46<00:44, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:51<00:48, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:54<00:40, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [01:56<00:33, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [01:59<00:29, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:02<00:27, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:05<00:25, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:08<00:20, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:11<00:17, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:15<00:16, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:18<00:12, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:20<00:08, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:22<00:05, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:25<00:02, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:30<00:00, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:47:11.260\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 13 metrics: {'f1': 0.6798412921035641, 'em': 0.54, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:47:11.261\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:47:16.989\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.040 | Total tokens: 12847495 | Current cost: $0.011 | Current tokens: 72278\u001b[0m\n", "\u001b[32m2025-12-14 11:47:22.572\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.051 | Total tokens: 12919731 | Current cost: $0.011 | Current tokens: 72236\u001b[0m\n", "\u001b[32m2025-12-14 11:47:31.026\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.062 | Total tokens: 12992028 | Current cost: $0.011 | Current tokens: 72297\u001b[0m\n", "\u001b[32m2025-12-14 11:47:32.980\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.062 | Total tokens: 12993003 | Current cost: $0.000 | Current tokens: 975\u001b[0m\n", "The identified issues across the workflows include redundancy in steps, particularly with overlapping functions in error and ambiguity handling, which can lead to inefficiencies. There is a lack of specificity in addressing different question types and contexts, potentially resulting in confusion and incorrect answers. The feedback mechanism is ineffective as it does not facilitate learning from past errors, and its purpose is unclear. Additionally, the output formatting step may be unnecessary if answers are already correctly formatted, leading to superfluous processing. Overall, these problems highlight the need for streamlined processes and clearer definitions within the workflow.\n", "\u001b[32m2025-12-14 11:47:35.149\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.062 | Total tokens: 12993582 | Current cost: $0.000 | Current tokens: 579\u001b[0m\n", "```python\n", "steps = [\n", "{'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:47:35.151\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'feedback_mechanism5670', 'output_formatting574']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Darren Benjamin Shepherd is American, but Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in the field of Engineering.\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the former site of the Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are presented as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and are performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: \"Frederick Lindemann, 1st Viscount Cherwell\"\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code through a combination of colors and blocks.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:47:47.292\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.073 | Total tokens: 13065849 | Current cost: $0.011 | Current tokens: 72267\u001b[0m\n", "\u001b[32m2025-12-14 11:47:49.032\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.073 | Total tokens: 13065982 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:47:51.013\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.073 | Total tokens: 13067343 | Current cost: $0.000 | Current tokens: 1361\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:48:10.332\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.084 | Total tokens: 13139661 | Current cost: $0.011 | Current tokens: 72318\u001b[0m\n", "\u001b[32m2025-12-14 11:48:11.651\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.084 | Total tokens: 13139794 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:48:14.082\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.085 | Total tokens: 13141592 | Current cost: $0.000 | Current tokens: 1798\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:48:22.903\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.096 | Total tokens: 13213985 | Current cost: $0.011 | Current tokens: 72393\u001b[0m\n", "\u001b[32m2025-12-14 11:48:25.379\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.096 | Total tokens: 13214129 | Current cost: $0.000 | Current tokens: 144\u001b[0m\n", "\u001b[32m2025-12-14 11:48:27.763\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.096 | Total tokens: 13215717 | Current cost: $0.000 | Current tokens: 1588\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:48:48.730\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.107 | Total tokens: 13288175 | Current cost: $0.011 | Current tokens: 72458\u001b[0m\n", "\u001b[32m2025-12-14 11:48:50.267\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.107 | Total tokens: 13288315 | Current cost: $0.000 | Current tokens: 140\u001b[0m\n", "\u001b[32m2025-12-14 11:48:53.027\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.107 | Total tokens: 13290359 | Current cost: $0.000 | Current tokens: 2044\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:49:03.718\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.118 | Total tokens: 13362759 | Current cost: $0.011 | Current tokens: 72400\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:49:07.251\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.119 | Total tokens: 13362893 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:49:10.569\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.119 | Total tokens: 13364769 | Current cost: $0.000 | Current tokens: 1876\u001b[0m\n", "\u001b[32m2025-12-14 11:49:10.570\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'feedback_mechanism5670', 'output_formatting574']\u001b[0m\n", "\u001b[32m2025-12-14 11:49:10.570\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 14 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:39, 4.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.34782608695652173, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:07<02:59, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:09<02:21, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:12<02:10, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:15<02:03, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:17<01:57, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:20<01:53, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:23<01:57, 2.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:26<02:04, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:32<02:28, 3.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:34<02:13, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:37<02:04, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:40<01:50, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:44<02:01, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:47<01:56, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:50<01:48, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:53<01:45, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:56<01:38, 3.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:58<01:25, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:00<01:17, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:02<01:11, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:05<01:12, 2.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:10<01:24, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:13<01:20, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:15<01:08, 2.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:17<01:04, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:20<01:03, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:24<01:10, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.0625, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:27<01:02, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:29<00:56, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:31<00:50, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:34<00:48, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:37<00:47, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:41<00:49, 3.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.18181818181818182, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:44<00:43, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:46<00:38, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:50<00:41, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:56<00:47, 3.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [01:58<00:37, 3.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:01<00:33, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:04<00:29, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:09<00:28, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:11<00:21, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:14<00:18, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:18<00:16, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:21<00:13, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:24<00:09, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:27<00:06, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:29<00:02, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:33<00:00, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:51:44.164\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 14 metrics: {'f1': 0.6965889393838203, 'em': 0.5, 'acc': 0.74}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:51:44.165\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:51:50.077\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.148 | Total tokens: 13541910 | Current cost: $0.011 | Current tokens: 72302\u001b[0m\n", "\u001b[32m2025-12-14 11:51:56.753\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.159 | Total tokens: 13614188 | Current cost: $0.011 | Current tokens: 72278\u001b[0m\n", "\u001b[32m2025-12-14 11:52:02.922\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.170 | Total tokens: 13686441 | Current cost: $0.011 | Current tokens: 72253\u001b[0m\n", "\u001b[32m2025-12-14 11:52:05.027\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.171 | Total tokens: 13687428 | Current cost: $0.000 | Current tokens: 987\u001b[0m\n", "The workflows exhibit several issues: redundancy in steps, particularly with overlapping functions in error and ambiguity handling; unclear output definitions as all steps produce the same 'answer', causing potential confusion; a lack of specificity in error handling, which may lead to inconsistent results; absence of a mechanism to track question context or history, risking repeated errors; and an undefined feedback mechanism that fails to clarify how feedback is utilized for model improvement. Additionally, the workflows do not accommodate varying question types, which may require distinct handling strategies.\n", "\u001b[32m2025-12-14 11:52:07.450\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.171 | Total tokens: 13688002 | Current cost: $0.000 | Current tokens: 574\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:52:07.451\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung,\" which is a type of legal entity in Germany, Austria, Switzerland, and Liechtenstein.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both Woman's Era and Naj are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Darren Benjamin Shepherd is American, but Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: \"Sam Boyd Stadium\"\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the former site of the Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are presented as some of the greatest in the English language, categorized into tragedy, history, and comedy, and they have been widely translated and performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: Read It and Weep\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark is written more for a lesbian and queer-identified female readership.\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Interscope Records\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code through a combination of colors and blocks.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, Duke Energy is based in North Carolina, while Affiliated Managers Group is based in Massachusetts.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: The Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:52:19.578\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.182 | Total tokens: 13760336 | Current cost: $0.011 | Current tokens: 72334\u001b[0m\n", "\u001b[32m2025-12-14 11:52:20.922\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.182 | Total tokens: 13760470 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:52:23.193\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.182 | Total tokens: 13761979 | Current cost: $0.000 | Current tokens: 1509\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:52:33.913\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.193 | Total tokens: 13834348 | Current cost: $0.011 | Current tokens: 72369\u001b[0m\n", "\u001b[32m2025-12-14 11:52:35.679\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.193 | Total tokens: 13834461 | Current cost: $0.000 | Current tokens: 113\u001b[0m\n", "\u001b[32m2025-12-14 11:52:37.685\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.193 | Total tokens: 13836097 | Current cost: $0.000 | Current tokens: 1636\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:52:48.626\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.204 | Total tokens: 13908425 | Current cost: $0.011 | Current tokens: 72328\u001b[0m\n", "\u001b[32m2025-12-14 11:52:50.253\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.204 | Total tokens: 13908570 | Current cost: $0.000 | Current tokens: 145\u001b[0m\n", "\u001b[32m2025-12-14 11:52:52.459\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.205 | Total tokens: 13910530 | Current cost: $0.000 | Current tokens: 1960\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:53:03.494\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.216 | Total tokens: 13982967 | Current cost: $0.011 | Current tokens: 72437\u001b[0m\n", "\u001b[32m2025-12-14 11:53:05.712\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.216 | Total tokens: 13983100 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:53:08.827\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.216 | Total tokens: 13985143 | Current cost: $0.000 | Current tokens: 2043\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:53:18.891\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.227 | Total tokens: 14057522 | Current cost: $0.011 | Current tokens: 72379\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:53:20.421\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.227 | Total tokens: 14057660 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 11:53:23.469\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.228 | Total tokens: 14059780 | Current cost: $0.000 | Current tokens: 2120\u001b[0m\n", "\u001b[32m2025-12-14 11:53:23.469\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:53:23.471\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 15 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<03:00, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:08<03:37, 4.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:11<02:44, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:13<02:16, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:16<02:11, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:18<02:00, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:20<01:52, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:23<01:57, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:26<01:53, 2.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:30<02:05, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:33<02:00, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:36<01:59, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:40<01:56, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:42<01:48, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:46<01:48, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:50<01:58, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:53<01:54, 3.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:56<01:38, 3.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:58<01:29, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:00<01:18, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:02<01:13, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:06<01:17, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:11<01:36, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19999999999999998, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:14<01:25, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:16<01:14, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:18<01:06, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:22<01:13, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:27<01:20, 3.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.05128205128205128, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:30<01:12, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:32<01:00, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:35<00:54, 2.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:37<00:49, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:41<00:50, 2.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:45<00:53, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:48<00:50, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:51<00:44, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:55<00:44, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:57<00:37, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:00<00:31, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:03<00:29, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:06<00:27, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:11<00:27, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:14<00:23, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:17<00:19, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:20<00:15, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:22<00:12, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:25<00:08, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:28<00:05, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:30<00:02, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:33<00:00, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 11:55:56.990\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 15 metrics: {'f1': 0.6973292987206031, 'em': 0.5, 'acc': 0.74}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 11:55:56.991\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:56:06.018\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.257 | Total tokens: 14236769 | Current cost: $0.011 | Current tokens: 72247\u001b[0m\n", "\u001b[32m2025-12-14 11:56:11.710\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.268 | Total tokens: 14309056 | Current cost: $0.011 | Current tokens: 72287\u001b[0m\n", "\u001b[32m2025-12-14 11:56:17.849\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.279 | Total tokens: 14381365 | Current cost: $0.011 | Current tokens: 72309\u001b[0m\n", "\u001b[32m2025-12-14 11:56:20.152\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.279 | Total tokens: 14382377 | Current cost: $0.000 | Current tokens: 1012\u001b[0m\n", "The workflow exhibits several issues: redundancy in steps, particularly between 'error_handling8134' and 'ambiguity_handling5585', which may overlap in functionality; a lack of clear differentiation among steps, as all produce the same output ('answer'), causing confusion; insufficient error and ambiguity handling, with no defined methods for identifying or resolving issues; an absence of a feedback loop to learn from mistakes and improve future predictions; and potential inefficiencies due to circular dependencies and an overemphasis on output formatting, which may be unnecessary if the answer is already in the desired format.\n", "\u001b[32m2025-12-14 11:56:22.105\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.279 | Total tokens: 14382966 | Current cost: $0.000 | Current tokens: 589\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 11:56:22.106\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'output_formatting574', 'ambiguity_handling5585', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: failed coup attempt by Nazi agents\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Juliet\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Rémi Lange is French, while Darren Benjamin Shepherd is American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, owned by Simon Property Group. It opened in 2000 on the site of the former Opryland USA theme park.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and they have been translated into every major living language and performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents the Baudot code through a combination of colors and blocks.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:56:33.518\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.290 | Total tokens: 14455378 | Current cost: $0.011 | Current tokens: 72412\u001b[0m\n", "\u001b[32m2025-12-14 11:56:35.090\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.291 | Total tokens: 14455511 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:56:37.187\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.291 | Total tokens: 14457203 | Current cost: $0.000 | Current tokens: 1692\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:56:46.401\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.302 | Total tokens: 14529491 | Current cost: $0.011 | Current tokens: 72288\u001b[0m\n", "\u001b[32m2025-12-14 11:56:47.950\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.302 | Total tokens: 14529626 | Current cost: $0.000 | Current tokens: 135\u001b[0m\n", "\u001b[32m2025-12-14 11:56:50.437\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.302 | Total tokens: 14531703 | Current cost: $0.000 | Current tokens: 2077\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:57:00.392\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.313 | Total tokens: 14604029 | Current cost: $0.011 | Current tokens: 72326\u001b[0m\n", "\u001b[32m2025-12-14 11:57:01.848\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.313 | Total tokens: 14604165 | Current cost: $0.000 | Current tokens: 136\u001b[0m\n", "\u001b[32m2025-12-14 11:57:04.448\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.314 | Total tokens: 14606262 | Current cost: $0.000 | Current tokens: 2097\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:57:14.296\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.325 | Total tokens: 14678573 | Current cost: $0.011 | Current tokens: 72311\u001b[0m\n", "\u001b[32m2025-12-14 11:57:16.014\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.325 | Total tokens: 14678706 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 11:57:18.161\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.325 | Total tokens: 14680433 | Current cost: $0.000 | Current tokens: 1727\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 11:57:29.409\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.336 | Total tokens: 14752798 | Current cost: $0.011 | Current tokens: 72365\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 11:57:31.119\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.336 | Total tokens: 14752932 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 11:57:33.704\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.336 | Total tokens: 14755216 | Current cost: $0.000 | Current tokens: 2284\u001b[0m\n", "\u001b[32m2025-12-14 11:57:33.704\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'output_formatting574', 'ambiguity_handling5585', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 11:57:33.706\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 16 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<02:40, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:06<02:36, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:09<02:18, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:11<02:08, 2.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:16<02:30, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:18<02:17, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:21<02:09, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:24<02:06, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:33<03:23, 4.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:37<03:01, 4.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:40<02:36, 4.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:44<02:37, 4.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:48<02:27, 3.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:52<02:23, 3.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.25, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:55<02:12, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:58<02:01, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [01:02<01:58, 3.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:04<01:40, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:07<01:36, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:10<01:34, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:12<01:23, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:15<01:15, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:19<01:30, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19999999999999998, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:22<01:23, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:25<01:15, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.16666666666666669, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:28<01:11, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:32<01:19, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:37<01:25, 3.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.05555555555555555, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:40<01:15, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:43<01:04, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:45<00:57, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:47<00:48, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:51<00:52, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:56<00:57, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:59<00:50, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:01<00:41, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:05<00:43, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:13<00:56, 4.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:15<00:43, 3.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:18<00:37, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:22<00:33, 3.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:25<00:28, 3.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:28<00:23, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:31<00:19, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:35<00:16, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:38<00:13, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:40<00:09, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:43<00:05, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:46<00:02, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:49<00:00, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 12:00:23.315\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 16 metrics: {'f1': 0.6781506995420039, 'em': 0.48, 'acc': 0.74}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 12:00:23.316\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:00:31.010\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.366 | Total tokens: 14932531 | Current cost: $0.011 | Current tokens: 72250\u001b[0m\n", "\u001b[32m2025-12-14 12:00:37.770\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.377 | Total tokens: 15004782 | Current cost: $0.011 | Current tokens: 72251\u001b[0m\n", "\u001b[32m2025-12-14 12:00:46.018\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.388 | Total tokens: 15077056 | Current cost: $0.011 | Current tokens: 72274\u001b[0m\n", "\u001b[32m2025-12-14 12:00:48.414\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.388 | Total tokens: 15077983 | Current cost: $0.000 | Current tokens: 927\u001b[0m\n", "The workflow exhibits several issues: redundancy among steps, particularly between 'error_handling8134' and 'ambiguity_handling5585', which may overlap in functionality; a lack of clear distinction in outputs, causing confusion about each step's role; insufficient handling of varying question complexities; absence of a feedback mechanism for iterative improvement; and no validation step for answer correctness. Additionally, the structure does not specify how to manage ambiguous or unanswered questions, leading to potential inefficiencies and inconsistent error handling.\n", "\u001b[32m2025-12-14 12:00:50.845\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.388 | Total tokens: 15078550 | Current cost: $0.000 | Current tokens: 567\u001b[0m\n", "```python\n", "steps = [\n", "{'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 12:00:50.846\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for Gesellschaft mit beschränkter Haftung.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: failed coup attempt by Nazi agents\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, they are not both American.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in the field of Engineering.\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Tara Strong, who voiced Juliet Starling in Lollipop Chainsaw, has done voice roles for the Teen Titans spinoff series \"Teen Titans Go!\".\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: The Oklahoma Sooners men's basketball team.\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The 2011 Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: Hawaii County\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: Sam Boyd Stadium\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, owned by Simon Property Group. It opened in 2000 on the site of the former Opryland USA theme park.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: Tunisia's national football team made its first World Cup in 1978.\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are presented as some of the greatest in the English language and Western literature, known for their division into tragedy, history, and comedy, and have been translated and performed worldwide.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann, 1st Viscount Cherwell\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y\" that includes the song \"Speed of Sound\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:01:03.699\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.399 | Total tokens: 15150995 | Current cost: $0.011 | Current tokens: 72445\u001b[0m\n", "\u001b[32m2025-12-14 12:01:05.443\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.399 | Total tokens: 15151136 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 12:01:07.244\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.400 | Total tokens: 15152872 | Current cost: $0.000 | Current tokens: 1736\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:01:21.211\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.411 | Total tokens: 15225284 | Current cost: $0.011 | Current tokens: 72412\u001b[0m\n", "\u001b[32m2025-12-14 12:01:23.590\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.411 | Total tokens: 15225422 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 12:01:28.560\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.411 | Total tokens: 15227293 | Current cost: $0.000 | Current tokens: 1871\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:01:40.520\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.422 | Total tokens: 15299821 | Current cost: $0.011 | Current tokens: 72528\u001b[0m\n", "\u001b[32m2025-12-14 12:01:43.191\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.422 | Total tokens: 15299959 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 12:01:48.229\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.423 | Total tokens: 15302343 | Current cost: $0.000 | Current tokens: 2384\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:01:58.485\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.434 | Total tokens: 15374715 | Current cost: $0.011 | Current tokens: 72372\u001b[0m\n", "\u001b[32m2025-12-14 12:02:00.784\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.434 | Total tokens: 15374863 | Current cost: $0.000 | Current tokens: 148\u001b[0m\n", "\u001b[32m2025-12-14 12:02:03.622\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.434 | Total tokens: 15377077 | Current cost: $0.000 | Current tokens: 2214\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:02:15.715\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.445 | Total tokens: 15449541 | Current cost: $0.011 | Current tokens: 72464\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:02:17.977\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.445 | Total tokens: 15449680 | Current cost: $0.000 | Current tokens: 139\u001b[0m\n", "\u001b[32m2025-12-14 12:02:21.138\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.446 | Total tokens: 15452147 | Current cost: $0.000 | Current tokens: 2467\u001b[0m\n", "\u001b[32m2025-12-14 12:02:21.138\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 12:02:21.140\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 17 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:04<03:59, 4.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:10<04:20, 5.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:13<03:13, 4.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:16<03:01, 3.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:23<03:37, 4.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.23076923076923075, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:27<03:16, 4.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:29<02:47, 3.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:32<02:33, 3.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:36<02:29, 3.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:40<02:33, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:43<02:12, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:48<02:25, 3.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:52<02:29, 4.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:55<02:17, 3.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [01:00<02:17, 3.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [01:04<02:14, 3.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [01:07<02:02, 3.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:10<01:51, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:14<01:50, 3.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:17<01:48, 3.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:20<01:33, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:23<01:34, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:29<01:52, 4.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:32<01:39, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:35<01:28, 3.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:40<01:32, 3.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:44<01:28, 3.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:50<01:39, 4.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.06060606060606061, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:55<01:41, 4.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:58<01:25, 4.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [02:02<01:15, 3.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [02:05<01:10, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [02:09<01:03, 3.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [02:14<01:05, 4.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:19<01:08, 4.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:23<01:00, 4.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:29<01:00, 4.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:34<00:58, 4.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:37<00:47, 4.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:41<00:41, 4.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:45<00:37, 4.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:49<00:32, 4.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:52<00:27, 3.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:57<00:25, 4.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.18181818181818182, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [03:02<00:21, 4.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [03:04<00:15, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [03:07<00:10, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [03:10<00:06, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [03:13<00:03, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [03:19<00:00, 3.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 12:05:40.427\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 17 metrics: {'f1': 0.6873723552433231, 'em': 0.48, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 12:05:40.428\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:05:48.395\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.475 | Total tokens: 15629484 | Current cost: $0.011 | Current tokens: 72261\u001b[0m\n", "\u001b[32m2025-12-14 12:05:55.338\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.486 | Total tokens: 15701738 | Current cost: $0.011 | Current tokens: 72254\u001b[0m\n", "\u001b[32m2025-12-14 12:06:02.762\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.497 | Total tokens: 15773986 | Current cost: $0.011 | Current tokens: 72248\u001b[0m\n", "\u001b[32m2025-12-14 12:06:05.394\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.497 | Total tokens: 15774896 | Current cost: $0.000 | Current tokens: 910\u001b[0m\n", "The workflow exhibits several issues: redundancy in steps, particularly between 'error_handling8134' and 'ambiguity_handling5585', which may overlap in functionality; a lack of clear distinction among steps, as all output the same 'answer', causing confusion; insufficient error handling and ambiguity resolution definitions; no clear termination condition, risking infinite loops; and an ineffective feedback mechanism that fails to specify how feedback will be integrated into future iterations, limiting the potential for improvement.\n", "\u001b[32m2025-12-14 12:06:10.384\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.498 | Total tokens: 15775463 | Current cost: $0.000 | Current tokens: 567\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 12:06:10.385\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'output_formatting574', 'ambiguity_handling5585', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for Gesellschaft mit beschränkter Haftung.\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines, with \"Woman's Era\" being a women's interest magazine and \"Naj\" being a lifestyle magazine for women.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Darren Benjamin Shepherd is American, but Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in the field of Engineering.\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners men's basketball team\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy given to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: \"Sam Boyd Stadium\"\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park, and is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are presented as some of the greatest in the English language and Western literature, categorized into tragedy, history, and comedy, and are widely translated and performed globally.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann, 1st Viscount Cherwell\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album that includes the song \"Speed of Sound\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: The Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: Sarah Kerrigan, the Queen of Blades\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:06:21.057\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.508 | Total tokens: 15847793 | Current cost: $0.011 | Current tokens: 72330\u001b[0m\n", "\u001b[32m2025-12-14 12:06:23.286\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.509 | Total tokens: 15847926 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 12:06:26.361\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.509 | Total tokens: 15849599 | Current cost: $0.000 | Current tokens: 1673\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:06:38.642\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.520 | Total tokens: 15922037 | Current cost: $0.011 | Current tokens: 72438\u001b[0m\n", "\u001b[32m2025-12-14 12:06:41.556\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.520 | Total tokens: 15922178 | Current cost: $0.000 | Current tokens: 141\u001b[0m\n", "\u001b[32m2025-12-14 12:06:44.829\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.520 | Total tokens: 15924596 | Current cost: $0.000 | Current tokens: 2418\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:06:59.850\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.531 | Total tokens: 15997089 | Current cost: $0.011 | Current tokens: 72493\u001b[0m\n", "\u001b[32m2025-12-14 12:07:01.908\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.531 | Total tokens: 15997225 | Current cost: $0.000 | Current tokens: 136\u001b[0m\n", "\u001b[32m2025-12-14 12:07:05.412\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.532 | Total tokens: 15999664 | Current cost: $0.000 | Current tokens: 2439\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:07:19.992\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.543 | Total tokens: 16072086 | Current cost: $0.011 | Current tokens: 72422\u001b[0m\n", "\u001b[32m2025-12-14 12:07:22.947\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.543 | Total tokens: 16072219 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 12:07:26.548\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.543 | Total tokens: 16074190 | Current cost: $0.000 | Current tokens: 1971\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:07:40.011\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.554 | Total tokens: 16146666 | Current cost: $0.011 | Current tokens: 72476\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:07:41.764\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.554 | Total tokens: 16146800 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 12:07:45.442\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.555 | Total tokens: 16149410 | Current cost: $0.000 | Current tokens: 2610\u001b[0m\n", "\u001b[32m2025-12-14 12:07:45.443\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'output_formatting574', 'ambiguity_handling5585', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 12:07:45.444\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 18 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<03:07, 3.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.7272727272727273, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:09<03:58, 4.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.3076923076923077, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:12<03:09, 4.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:14<02:34, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:19<02:54, 3.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:23<02:51, 3.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:25<02:20, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:29<02:20, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:32<02:20, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:36<02:22, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:38<02:03, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:41<01:54, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:44<01:52, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:47<01:51, 3.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:51<01:49, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:54<01:53, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:59<02:01, 3.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [01:03<01:59, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:06<01:47, 3.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:08<01:38, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:11<01:27, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:12<01:12, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:17<01:25, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19999999999999998, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:21<01:32, 3.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:25<01:27, 3.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:28<01:22, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:34<01:39, 4.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:41<01:47, 4.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.047619047619047616, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:44<01:30, 4.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:46<01:14, 3.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:48<01:03, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:52<01:01, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:55<00:54, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [02:00<01:00, 3.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [02:04<00:57, 3.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [02:08<00:54, 3.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [02:12<00:52, 4.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:19<00:58, 4.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.22222222222222224, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:22<00:47, 4.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:26<00:42, 4.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:29<00:35, 3.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:32<00:29, 3.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:35<00:24, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:38<00:19, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.18181818181818182, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:41<00:16, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:45<00:13, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:47<00:09, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:50<00:05, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:52<00:02, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:56<00:00, 3.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 12:10:41.804\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 18 metrics: {'f1': 0.6615102675102675, 'em': 0.46, 'acc': 0.74}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 12:10:41.805\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:10:49.239\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.585 | Total tokens: 16326819 | Current cost: $0.011 | Current tokens: 72264\u001b[0m\n", "\u001b[32m2025-12-14 12:10:57.454\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.595 | Total tokens: 16399084 | Current cost: $0.011 | Current tokens: 72265\u001b[0m\n", "\u001b[32m2025-12-14 12:11:03.500\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.606 | Total tokens: 16471323 | Current cost: $0.011 | Current tokens: 72239\u001b[0m\n", "\u001b[32m2025-12-14 12:11:05.662\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.607 | Total tokens: 16472241 | Current cost: $0.000 | Current tokens: 918\u001b[0m\n", "The workflows across the three detected issues reveal several common problems: redundancy in steps, particularly with contextual understanding, error handling, and ambiguity handling, which overlap in functionality; a lack of specificity in error handling that fails to categorize or address errors effectively; vagueness in the feedback mechanism regarding its integration for improvement; and unclear distinctions between output formatting and contextual understanding, suggesting potential integration for efficiency. Additionally, the workflows exhibit limited adaptability to varying question complexities, which may lead to incorrect answers.\n", "\u001b[32m2025-12-14 12:11:08.874\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.607 | Total tokens: 16472806 | Current cost: $0.000 | Current tokens: 565\u001b[0m\n", "```python\n", "steps = [\n", "{'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", "{'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 12:11:08.875\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH stands for \"Gesellschaft mit beschränkter Haftung.\"\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig has been a member of more bands than Pete Doherty.\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: William King was from Maine.\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: \"failed coup attempt by Nazi agents\"\n", "Solutions: a failed coup attempt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: March 2, 1972\n", "Solutions: 2 March 1972\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, only Darren Benjamin Shepherd is American; Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: Engineering\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: 1988, 1989, 1990\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: \"Sam Boyd Stadium\"\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, owned by Simon Property Group. It opened in 2000 on the former site of the Opryland USA theme park.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare, who lived from 1564 to 1616, is presented as a playwright whose works are among the greatest in the English language, divided into genres of tragedy, history, and comedy, and have been translated into every major living language.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Richard Gibson was best known for his role as Herr Otto Flick in \"'Allo 'Allo!\".\n", "Solutions: Captain Hans Geering\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: \"Frederick Lindemann and David J. C. MacKay\"\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Interscope Records\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing Co.\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album that includes the song \"Speed of Sound\" represents the Baudot code through a combination of colors and blocks.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum Amsterdam\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: \"Sarah Kerrigan, the Queen of Blades\"\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:11:24.990\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.618 | Total tokens: 16545296 | Current cost: $0.011 | Current tokens: 72490\u001b[0m\n", "\u001b[32m2025-12-14 12:11:26.204\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.618 | Total tokens: 16545431 | Current cost: $0.000 | Current tokens: 135\u001b[0m\n", "\u001b[32m2025-12-14 12:11:28.206\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.618 | Total tokens: 16547362 | Current cost: $0.000 | Current tokens: 1931\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:11:38.774\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.629 | Total tokens: 16619736 | Current cost: $0.011 | Current tokens: 72374\u001b[0m\n", "\u001b[32m2025-12-14 12:11:40.289\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.629 | Total tokens: 16619870 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 12:11:42.915\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.630 | Total tokens: 16621925 | Current cost: $0.000 | Current tokens: 2055\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:11:53.196\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.641 | Total tokens: 16694369 | Current cost: $0.011 | Current tokens: 72444\u001b[0m\n", "\u001b[32m2025-12-14 12:11:54.477\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.641 | Total tokens: 16694503 | Current cost: $0.000 | Current tokens: 134\u001b[0m\n", "\u001b[32m2025-12-14 12:11:57.673\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.641 | Total tokens: 16697077 | Current cost: $0.000 | Current tokens: 2574\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:12:06.452\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.652 | Total tokens: 16769422 | Current cost: $0.011 | Current tokens: 72345\u001b[0m\n", "\u001b[32m2025-12-14 12:12:07.787\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.652 | Total tokens: 16769560 | Current cost: $0.000 | Current tokens: 138\u001b[0m\n", "\u001b[32m2025-12-14 12:12:11.107\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.653 | Total tokens: 16772005 | Current cost: $0.000 | Current tokens: 2445\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:12:19.935\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.664 | Total tokens: 16844372 | Current cost: $0.011 | Current tokens: 72367\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:12:21.944\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.664 | Total tokens: 16844507 | Current cost: $0.000 | Current tokens: 135\u001b[0m\n", "\u001b[32m2025-12-14 12:12:24.489\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.664 | Total tokens: 16847181 | Current cost: $0.000 | Current tokens: 2674\u001b[0m\n", "\u001b[32m2025-12-14 12:12:24.490\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 12:12:24.491\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 19 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:03<03:04, 3.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:08<03:21, 4.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:10<02:27, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:12<02:07, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:15<02:10, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:18<02:08, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:20<01:54, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:23<01:53, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:26<01:52, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:30<02:12, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:33<01:57, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:36<01:55, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:39<02:00, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.08333333333333333, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:42<01:48, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:46<01:59, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:49<01:53, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:54<02:00, 3.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.11764705882352941, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:57<01:50, 3.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [00:59<01:35, 3.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.2857142857142857, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:01<01:24, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:03<01:16, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:06<01:11, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:09<01:17, 2.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:13<01:21, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:15<01:10, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:17<01:02, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:20<01:00, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:26<01:16, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.03571428571428571, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:28<01:07, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:30<00:58, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:33<00:51, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:35<00:47, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:38<00:45, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:41<00:46, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:44<00:44, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:47<00:41, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:53<00:48, 3.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [01:58<00:49, 4.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:00<00:38, 3.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:03<00:34, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:06<00:28, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:08<00:24, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:11<00:20, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:14<00:18, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:17<00:14, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:20<00:11, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:22<00:08, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:26<00:06, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:29<00:02, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:33<00:00, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 12:14:58.163\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 19 metrics: {'f1': 0.6574799475657491, 'em': 0.48, 'acc': 0.76}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 12:14:58.163\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:15:04.193\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.694 | Total tokens: 17024509 | Current cost: $0.011 | Current tokens: 72259\u001b[0m\n", "\u001b[32m2025-12-14 12:15:13.435\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.705 | Total tokens: 17096791 | Current cost: $0.011 | Current tokens: 72282\u001b[0m\n", "\u001b[32m2025-12-14 12:15:20.364\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.716 | Total tokens: 17169039 | Current cost: $0.011 | Current tokens: 72248\u001b[0m\n", "\u001b[32m2025-12-14 12:15:23.262\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.716 | Total tokens: 17169991 | Current cost: $0.000 | Current tokens: 952\u001b[0m\n", "The workflow exhibits several issues: redundancy in steps, particularly between 'contextual_understanding' and 'ambiguity_handling', which may overlap in functionality; a lack of specificity in error handling that fails to categorize or address different types of errors; unclear output formatting that does not account for varying answer types; a vague feedback mechanism that does not clarify how feedback will enhance future responses; and an absence of a clear mechanism for tracking performance, making it difficult to identify failure points or differentiate between question types, potentially leading to misinterpretation and incorrect outputs.\n", "\u001b[32m2025-12-14 12:15:26.480\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.716 | Total tokens: 17170574 | Current cost: $0.000 | Current tokens: 583\u001b[0m\n", "```python\n", "steps = [\n", " {'name': 'contextual_understanding4378', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'ambiguity_handling5585', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'error_handling8134', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'output_formatting574', 'args': ['question'], 'outputs': ['answer']},\n", " {'name': 'feedback_mechanism5670', 'args': ['question'], 'outputs': ['answer']}\n", "]\n", "```\n", "\u001b[32m2025-12-14 12:15:26.481\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "Questions: Context: Title: Constantin Medien\n", "Text: Constantin Medien AG (formerly EM.Entertainment and EM.TV & Merchandising AG, then EM.TV AG, and finally em.sport media ag) is a German media group, based in Ismaning near Munich, active in the area of sports, film and event marketing to medium-sized media companies.\n", "\n", "Title: VIVA Poland\n", "Text: VIVA Polska (earlier \"VIVApolska!\") is a Polish 24h music and entertainment channel from Viacom International Media Networks Polska. The channel was officially launched on June 10, 2000 by the German VIVA Media AG.\n", "\n", "Title: Viva (UK and Ireland)\n", "Text: Viva (stylised as VIVA) is a music television channel in the United Kingdom and Ireland, owned by VIVA Media and thereby Viacom International Media Networks Europe. The channel launched on 26 October 2009, replacing TMF.\n", "\n", "Title: Blic\n", "Text: Blic (Cyrillic: Блиц, ] ) is a daily middle-market tabloid newspaper in Serbia. Founded in 1996, \"Blic\" is owned by Ringier Axel Springer Media AG, a joint venture between Ringier media corporation from Switzerland and Axel Springer AG from Germany.\n", "\n", "Title: Qontis\n", "Text: Qontis is a Switzerland based online personal finance management (PFM) platform. The service is part of a commercial enterprise between the \"Neue Zürcher Zeitung\" media property and e-banking solutions provider Crealogix. The platform provides users with the ability to document and organize data from all instances of private income and expenditures. Qontis' CEO (chief executive officer) is Christian Bieri, who formerly served as the Austrian Country Manager and CEE for the Vienna branch of Avaloq Evolution AG. The company's CMO (chief marketing officer) is Nils Reimelt, the former digital director at Ringier Axel Springer Media AG.\n", "\n", "Title: VIVA Media\n", "Text: VIVA Media GmbH (until 2004 \"VIVA Media AG\") is a music television network originating from Germany. It was founded for broadcast of VIVA Germany as VIVA Media AG in 1993 and has been owned by their original concurrent Viacom, the parent company of MTV, since 2004. Viva channels exist in some European countries; the first spin-offs were launched in Poland and Switzerland in 2000.\n", "\n", "Title: ProSiebenSat.1 Media\n", "Text: ProSiebenSat.1 Media SE (officially abbreviated as P7S1, formerly ProSiebenSat.1 Media AG) is a European mass media company, based in Germany. It operates free-to-air commercial TV channels, pay TV channels, radio stations and related print businesses. It was formed on October 2, 2000 by the merger of German TV broadcasters ProSieben Media AG (founded in 1989) and Sat.1 SatellitenFernsehen GmbH (founded in 1984 as PKS (Programmgesellschaft für Kabel- und Satellitenrundfunk)). The company is listed on the Frankfurt Stock Exchange and is a component of the DAX index.\n", "\n", "Title: Gesellschaft mit beschränkter Haftung\n", "Text: A Gesellschaft mit beschränkter Haftung (] , abbreviated GmbH ] and also GesmbH in Austria) is a type of legal entity very common in Germany, Austria, Switzerland (where it is equivalent to a S.à r.l.) and Liechtenstein. In the United States, the equivalent type of entity is the limited liability company (LLC). The name of the GmbH form emphasizes the fact that the owners (\"Gesellschafter\", also known as members) of the entity are not personally liable for the company's debts. \"GmbH\"s are considered legal persons under German and Austrian law. Other variations include mbH (used when the term \"Gesellschaft\" is part of the company name itself), and gGmbH (\"gemeinnützige\" GmbH) for non-profit companies.\n", "\n", "Title: Mix Megapol\n", "Text: Mix Megapol is a private Swedish radio network controlled by ProSiebenSat.1 Media AG. It launched in 1993 under the name Skärgårdsradion (Archipelago Radio). Later that year the name was changed to Radio Megapol when the broadcasting permissions were auctioned out. In 1997 the word \"Mix\" was added and their slogan became \"The best mix of hits and oldies\". Mix Megapol is on air in 24 cities from Kiruna in the north to Malmö in the south. They have over two million listeners per week. Their target group is people aged between 25 and 45.\n", "\n", "Title: John M. Keller\n", "Text: John M. Keller (born March 5, 1938) is an American educational psychologist. He is best known for his work on motivation in educational settings and in particular the ARCS model of instructional design. The four elements of the acronym stand for Attention, Relevance, Confidence and Satisfaction (ARCS).\n", "\n", "Question: VIVA Media AG changed it's name in 2004. What does their new acronym stand for?\n", "\n", "Answer:\n", "Predictions: GmbH\n", "Solutions: Gesellschaft mit beschränkter Haftung\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Pete Doherty\n", "Text: Peter Doherty (born 12 March 1979) is an English musician, songwriter, actor, poet, writer, and artist. He is best known for being co-frontman of the Libertines, which he formed with Carl Barât in 1997. His other musical projects are indie band Babyshambles and Peter Doherty and the Puta Madres.\n", "\n", "Title: Relativity (Emarosa album)\n", "Text: Relativity is the debut album by American post-hardcore band Emarosa released on July 8, 2008 through Rise Records. \"Relativity\" was produced by Kris Crummett, producer of other bands such as Drop Dead, Gorgeous and Fear Before, whom Jonny Craig worked with on Dance Gavin Dance's debut album the year before.\n", "\n", "Title: Jonny Craig\n", "Text: Jonathan Monroe \"Jonny\" Craig (born March 26, 1986) is a Canadian-American singer and songwriter. He is currently working as a solo musician. He has been the lead vocalist for the bands Dance Gavin Dance, Emarosa, Ghost Runner on Third, Slaves, and westerHALTS. As a solo artist, he has released one studio album, two EPs and a live album to date. He was also a part of the supergroup Isles & Glaciers. Craig possesses the vocal range of a baritenor and his distinct type of soul-based singing has earned him considerable acclaim.\n", "\n", "Title: Up the Shambles – Live in Manchester\n", "Text: Up the Shambles – Live in Manchester is a live DVD of the band Babyshambles. The DVD was released without the bands prior knowledge according to bassist Drew McConnell. The DVD was released around the time of the band's second album \"Shotters Nation\", but not only featured a much older version of the band, it was recorded prior to the release of the first album \"Down in Albion\". The set list features not only songs on the band's debut but B-sides, unreleased songs and songs by Pete Doherty's former band The Libertines.\n", "\n", "Title: The Libertines\n", "Text: The Libertines are an English rock band, formed in London in 1997 by frontmen Carl Barât (vocals/guitar) and Pete Doherty (vocals/guitar). The band, centred on the songwriting partnership of Barât and Doherty, has also included John Hassall (bass) and Gary Powell (drums) for most of its recording career. The band was part of the garage rock revival and spearheaded the movement in the UK.\n", "\n", "Title: Paul Roundhill\n", "Text: Paul Nicholas Roundhill (born 25 March 1955 in London) is an English artist and writer based in the East End of London, England. He is best known for his association with musician Pete Doherty, acting as his self-styled literary agent and previously running the website balachada.com (Bala Chadha being street slang for crack cocaine from the Bengali translation of \"good white\"), which was closed by Doherty in May 2006.\n", "\n", "Title: Books of Albion\n", "Text: The Books of Albion, or Journals: The Collected Writings of Peter Doherty, is an anthology of the poetry and diary entries of English musician and poet Pete Doherty. He is also currently a member of the group Babyshambles but is most known for his time as front man of The Libertines. The book has writings from 1999 up until 2007 and was released on the 30 May 2007 by Orion Books.\n", "\n", "Title: Dirty Pretty Things (band)\n", "Text: Dirty Pretty Things were an English band fronted by Carl Barât, a member of The Libertines. The formation of the band was announced in September 2005, after a dispute between Barât and Pete Doherty led to the breakup of The Libertines in 2004. Barât had worked with Vertigo Records and had previously revealed that his new project was with the label. Didz Hammond announced he was leaving the Cooper Temple Clause to join the band alongside Libertines drummer Gary Powell and guitarist Anthony Rossomando, who had filled in for Doherty following his departure from The Libertines. They played their first shows in October 2005 in Italy and Paris, France. They announced their split on 1 October 2008 and played their final shows during November.\n", "\n", "Title: Stalking Pete Doherty\n", "Text: Stalking Pete Doherty is a rockumentary assembled from footage shot by Max Carlish, a BAFTA Award–winning film director. As the title suggests, it is about both attempts by Carlish to interview Pete Doherty.\n", "\n", "Title: The Greatest of All Lost Arts\n", "Text: The Greatest of All Lost Arts is the second album by the American post-hardcore band Lower Definition. The album was recorded in early 2008 with producer Kris Crummett and was released on July 8. The album contains 11 tracks, with Jonny Craig providing guest vocals on \"Pueblo Cicada\". The band hand-picked Kris Crummett as their producer. This album marks the last appearance by bassist Stefan Toler and founding member/drummer Valentino Arteaga.\n", "\n", "Question: Which of Jonny Craig and Pete Doherty has been a member of more bands ?\n", "\n", "Answer:\n", "Predictions: Jonny Craig\n", "Solutions: Jonny\" Craig\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Compromise of 1790\n", "Text: The Compromise of 1790 was a compromise between Alexander Hamilton on the one hand and Thomas Jefferson and James Madison whereby Hamilton won the decision for the national government to take over and pay the state debts, while Jefferson and Madison obtained the national capital (District of Columbia) for the South. The compromise resolved the deadlock in Congress. Southerners were blocking the assumption of state debts by the treasury, thereby destroying the Hamiltonian program for building a fiscally strong nation state. Northerners rejected the proposal, much desired by Virginians, to locate the permanent national capital on the Virginia-Maryland border. The compromise made possible the passage of the Residence and Funding (Assumption) Acts in July and August 1790. Historian Jacob Cooke says it is, \"generally regarded as one of the most important bargains in American history, ranking just below the better known Missouri Compromise and the Compromise of 1850.\"\n", "\n", "Title: Anti-Nebraska movement\n", "Text: The Anti-Nebraska movement was a political alignment in the United States formed in opposition to the Kansas-Nebraska Act of 1854 and to its repeal of the Missouri Compromise provision forbidding slavery in U.S. territories north of latitude 36° 30' N. (At the time, the name \"Nebraska\" could loosely refer to areas west of the Missouri River.)\n", "\n", "Title: History of the United States Republican Party\n", "Text: The Republican Party, also commonly called the GOP (for \"Grand Old Party\"), is one of the world's oldest extant political parties. It is the second oldest existing political party in the United States after its primary rival, the Democratic Party. It emerged in 1854 to combat the Kansas–Nebraska Act, an act that dissolved the terms of the Missouri Compromise and allowed slave or free status to be decided in the territories by popular sovereignty. The Party had almost no presence in the Southern United States, but by 1858 in the North it had enlisted former Whigs and former Free Soil Democrats to form majorities in nearly every Northern state.\n", "\n", "Title: William King (governor)\n", "Text: William King (February 9, 1768June 17, 1852) was an American merchant, shipbuilder, army officer, and statesman from Bath, Maine. A proponent of statehood for Maine, he became its first governor when it separated from Massachusetts in 1820.\n", "\n", "Title: Henry Smith Lane\n", "Text: Henry Smith Lane (February 24, 1811 – June 19, 1881) was a United States Representative, Senator, and the 13th Governor of Indiana; he was by design the shortest-serving Governor of Indiana, having made plans to resign the office should his party take control of the Indiana General Assembly and elect him to the United States Senate. He held that office for only two days, and was known for his opposition to slavery. A Whig until the party collapsed, he supported compromise with the south. He became an early leader in the Republican Party starting in 1856 serving as the president of the first party convention, delivering its keynote address, and was influential in the nomination of Abraham Lincoln. With the repeal of the Missouri Compromise, he became a full-fledged\n", "\n", "Title: Parallel 36°30′ north\n", "Text: The parallel 36°30′ north is a circle of latitude that is 36 and one-half degrees north of the equator of the Earth. This parallel of latitude is particularly significant in the history of the United States as the line of the Missouri Compromise, which was used to divide the prospective slave and free states west of the Mississippi River, with the exception of Missouri, which is mostly north of this parallel.\n", "\n", "Title: Maine gubernatorial election, 1820\n", "Text: The 1820 Maine gubernatorial election took place on April 3, 1820. It was the first election for Governor of Maine, taking place after Maine separated from Massachusetts and was recognized as a state on March 15, 1820. Maine's separation from Massachusetts came as a result of The Missouri Compromise. This election saw the virtually unanimous election of William King, the man most chiefly responsible for the push for Maine statehood. He had no opponents.\n", "\n", "Title: Pottawatomie massacre\n", "Text: The Pottawatomie massacre occurred during the night of May 24 and the morning of May 25, 1856. In reaction to the sacking of Lawrence, Kansas by pro-slavery forces, John Brown and a band of abolitionist settlers—some of them members of the Pottawatomie Rifles—killed five settlers north of Pottawatomie Creek in Franklin County, Kansas. This was one of the many bloody episodes in Kansas preceding the American Civil War, which came to be known collectively as Bleeding Kansas. Bleeding Kansas was largely brought about by the Missouri Compromise and the Kansas–Nebraska Act.\n", "\n", "Title: Missouri Compromise\n", "Text: The Missouri Compromise is the title generally attached to the legislation passed by the 16th United States Congress on May 8, 1820. The measures provided for the admission of Maine as a state along with Missouri as a slave state, thus maintaining the balance of power between North and South. As part of the compromise, slavery was prohibited North of the 36°30′ parallel, excluding Missouri. President James Monroe signed the legislation on April 6, 1820.\n", "\n", "Title: Dred Scott\n", "Text: Dred Scott (c. 1799 – September 17, 1858) was an enslaved African American man in the United States who unsuccessfully sued for his freedom and that of his wife and their two daughters in the \"Dred Scott v. Sandford\" case of 1857, popularly known as the \"Dred Scott Decision\". Scott claimed that he and his wife should be granted their freedom because they had lived in Illinois and the Wisconsin Territory for four years, where slavery was illegal. The United States Supreme Court decided 7–2 against Scott, finding that neither he nor any other person of African ancestry could claim citizenship in the United States, and therefore Scott could not bring suit in federal court under diversity of citizenship rules. Moreover, Scott's temporary residence outside Missouri did not bring about his emancipation under the Missouri Compromise, which the court ruled unconstitutional as it would \"improperly deprive Scott's owner of his legal property\".\n", "\n", "Question: Where was the first governor after the The Missouri Compromise from?\n", "\n", "Answer:\n", "Predictions: Maine\n", "Solutions: Bath, Maine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Creature Comforts\n", "Text: Creature Comforts is a stop motion clay animation comedy mockumentary franchise originating in a 1989 British humorous animated short film of the same name. The film matched animated zoo animals with a soundtrack of people talking about their homes, making it appear as if the animals were being interviewed about their living conditions. It was created by Nick Park and Aardman Animations. The film later became the basis of a series of television advertisements for the electricity boards in the United Kingdom, and in 2003, a television series in the same style was released. An American version of the series was also made.\n", "\n", "Title: Tata Steel Zoological Park\n", "Text: Tata Steel Zoological Park is situated in the corner most area of Jubilee Park. This zoo is known for its Safari Park, which enables tourists to drive through the wooden area, where animals roam freely. Tourists can also visit the Nature Education Centre in the zoo, which gives information about the zoo animals.\n", "\n", "Title: Nick Park\n", "Text: Nicholas Wulstan \"Nick\" Park, CBE (born 6 December 1958) is an English director, writer and animator best known as the creator of \"Wallace and Gromit\" and \"Shaun the Sheep\". Park has been nominated for an Academy Award a total of six times, and won four with \"Creature Comforts\" (1989), \"The Wrong Trousers\" (1993), \"A Close Shave\" (1995), and \"\" (2005).\n", "\n", "Title: Wallace & Gromit in Project Zoo\n", "Text: Wallace & Gromit in Project Zoo is a platform video game, the first featuring Aardman Animations' characters Wallace & Gromit. The game was developed by Frontier Developments for the PlayStation 2, Xbox (not compatible with Xbox 360), GameCube and Microsoft Windows. The game features the voice of Wallace, Peter Sallis.\n", "\n", "Title: Wallace and Gromit's World of Invention\n", "Text: Wallace and Gromit's World of Invention is a science-themed miniseries featuring the animated claymation characters Wallace and Gromit, made by Aardman and aired on BBC One. The BBC said in a press statement that in the series, \"Wallace will take a light hearted and humorous look at the real-life inventors, contraptions, gadgets and inventions, with the silent help of Gromit. The series aims to inspire a whole new generation of innovative minds by showing them real, but mind-boggling, machines and inventions from around the world that have influenced his illustrious inventing career.\"\n", "\n", "Title: Exotic ungulate encephalopathy\n", "Text: Exotic ungulate encephalopathy is a transmissible spongiform encephalopathy (TSE), or prion disease, identified in infected organs of zoo animals. This subgroup of the TSEs in captive animals was identified in zoo animals in Great Britain including species of greater kudu, nyala, gemsbok, the common eland, Arabian and Scimitar Oryx, an Ankole-Watusi cow, and an American bison. Studies indicate that transmission likely occurred via the consumption of feed supplemented with meat and bone meal, although some animals died after the British ban on ground offal in animal feed. All animals died during the 1990s, with the last death occurring in 1998.\n", "\n", "Title: Wallace and Gromit\n", "Text: Wallace and Gromit is a British clay animation comedy series created by Nick Park of Aardman Animations. The series consists of four short films and a feature-length film. The series centres on Wallace, a good-natured, eccentric, cheese-loving inventor, along with his companion Gromit, a silent yet loyal and intelligent anthropomorphic dog. Wallace was originally voiced by veteran actor Peter Sallis, but as of 2011, this role has been passed on to Ben Whitehead. Gromit remains silent, communicating only through means of facial expressions and body language.\n", "\n", "Title: Wallace & Gromit's Musical Marvels\n", "Text: Wallace & Gromit's Musical Marvels (also known as Wallace & Gromit at the Proms) is the name of Prom 20 of the 2012 season of The BBC Proms, which features orchestral renditions of Julian Nott's theme from Wallace & Gromit and classical music set to scenes from the Wallace & Gromit films. Wallace is performed by Ben Whitehead, the actor who performed Wallace in the episodic adventure game series, Wallace & Gromit's Grand Adventures. Due to its popularity, it became a full touring show in 2013, premiering at The Plenary in Melbourne, Australia on 9 February 2013.\n", "\n", "Title: Killing of Harambe\n", "Text: On May 28, 2016, a three-year-old boy climbed into a gorilla enclosure at the Cincinnati Zoo and Botanical Garden and was grabbed and dragged by Harambe, a 17-year-old Western lowland gorilla. Fearing for the boy's life, a zoo worker shot and killed Harambe. The incident was recorded on video and received broad international coverage and commentary, including controversy over the choice to kill Harambe. A number of primatologists and conservationists wrote later that the zoo had no other choice under the circumstances, and that it highlighted the danger of zoo animals in close proximity to humans and the need for better standards of care.\n", "\n", "Title: Zoo Parade\n", "Text: Zoo Parade is an American television program broadcast from 1950 to 1957 that featured animals from the Lincoln Park Zoo in Chicago. The program's host was Marlin Perkins, the Zoo's director. Perkins went on to host the program \"Wild Kingdom\". Jim Wehmeyer has described the show: \"A precursor of sorts to the regularly featured animal segments on \"The Tonight Show\" and other late-night talk shows, \"Zoo Parade\" was a location-bound production (filmed in the reptile house basement) during which Perkins would present and describe the life and peculiarities of Lincoln Park Zoo animals.\"\n", "\n", "Question: The creator of \"Wallace and Gromit\" also created what animation comedy that matched animated zoo animals with a soundtrack of people talking about their homes? \n", "\n", "Answer:\n", "Predictions: Creature Comforts\n", "Solutions: Creature Comforts\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Lifestyle trends and media\n", "Text: Lifestyle changes have been increasing slowly since the introduction of media. Media – films, television shows, magazines, and more recently, the Internet (i.e. self-written blogs and popular websites) are the main sources of lifestyle influence around the world. Lifestyle changes include how people eat, dress, and communicate. Celebrity endorsements are prevalent. Lifestyle trends have always been influenced by the wealthy and famous, whether they are spotted at leisure or in a paid advertisement. At the dawn of the media age, the newspaper, popular magazines like \"Life\", and TV allowed the general public glimpse lifestyles that before were only available to the imagination. After its creation, the Internet became arguably the most powerful medium for spotting and influencing trends, not just by celebrities but by the average person. The computer era has changed the way people obtain their news, perspectives and communication. Magazines are still popular, but advertisers now often supply a web address where consumers can visit for more information than a print ad can provide. The average American household has two personal computers, making the Internet easily accessible. The rise of user-generated content is exemplified by the fact that anyone with Internet access can create a blog or an online journal, whether personal or commercial, which might detail someone's experience in a new restaurant, a purchased item of clothing or knickknack, or a review to a film. With the advent of the Android phone and its relative ease of uploading photos to social media sites such as Facebook, one can get an idea of how quickly an idea, pub review, or coveted object can be shared. Advertisers have always been privy to the strength of word-of-mouth and have tapped into social media, including Facebook, Twitter, and Tumblr to make their wares known. Douglas Kellner writes, \"Radio, television, film, and the other products of media culture provide materials out of which we forge our very identities; our sense of selfhood; our notion of what it means to be male or female; our sense of class, of ethnicity and race, of nationality, of sexuality; and of \"us\" and \"them.\"\"\n", "\n", "Title: Chin (deity)\n", "Text: In describing the customs of the Mayas inhabiting the Verapaz province (including the Alta Verapaz and Baja Verapaz) of 16th-century Guatemala, Bishop Bartolomé de las Casas mentions sexual relationships, regulated by customary law, between unmarried young men and boys, as well as similar relations prevailing among adolescents receiving instruction in the temples. Chin, together with Cu, Cavil ('idol'), and Maran, is mentioned as the name of the male deity said to have demonstrated sexual intercourse with another 'demon', and thereby to have introduced such relationships: \"From that time on some fathers gave their sons a little boy to be used as a woman; and if someone else took the boy, they demanded pay as is done when someone violates another's wife.\" Institutionalized pederastic prostitution, including transvestism, is recorded in 17th-century Spanish reports of the Itzá Mayas living in the Petén. Among the Classic Period scenes found in a cave of Naj Tunich is a depiction of a naked, sexually excited male creature embracing a nude Maya nobleman, possibly by way of initiation.\n", "\n", "Title: Be Love\n", "Text: Be Love is a Japanese manga magazine targeting women published by Kodansha. It debuted in September 1980. It is one of the leading manga magazines for adult women, the first of its kind, and was instrumental in the rising popularity of josei manga in the 1980s, which led to the creation of other magazines targeted at women such as \"You\" and \"Big Comic for Lady\". As of 2003, \"Be Love\", like \"You\" and \"Jour\", published stories focussing on \"the reality of everyday life\" experienced by its readers.\n", "\n", "Title: Whit Burnett\n", "Text: Whit Burnett (1900–1972) was an American writer and writing teacher who founded and edited the literary magazine \"Story\". In the 1940s, \"Story\" was an important magazine in that it published the first or early works of many writers who went on to become major authors. Not only did Burnett prove to be a valuable literary birddog for new talent, but \"Story\" remained a respectable though low-paying (typically $25 per story) alternative for stories rejected by the large-circulation slick magazines published on glossy paper like \"Collier's\" or \"The Saturday Evening Post\" or the somewhat more prestigious and literary slick magazines such as \"The New Yorker\". While \"Story\" paid poorly compared to the slicks and even the pulps and successor digest-sized magazines of its day, it paid better than most of, and had similar cachet to, the university-based and the other independent \"little magazines\" of its era.\n", "\n", "Title: Kathoey\n", "Text: Kathoey or katoey (Thai: กะเทย ; rtgs: \"Kathoei\"  ] ) is a transgender woman or an effeminate gay male in Thailand. A significant number of Thais perceive \"kathoeys\" as belonging to a third gender, including many \"kathoeys\" themselves, while others see them as either a kind of man or a kind of woman. However, when considering transgender women (MtF) as a group in Thai society, most refer to themselves as \"phuying\" (Thai: ผู้หญิง \"women\"), with a minority referring to themselves as \"phuying praphet song\" (a \"second kind of woman\") and only very few referring to themselves as \"kathoey\". Related phrases include \"phet thi sam\" (Thai: เพศที่สาม , \"third gender\"), and \"sao praphet song\" or \"phu ying praphet song\" (Thai: สาวประเภทสอง, ผู้หญิงประเภทสอง — both meaning \"second-type female\"). The word \"kathoey\" is of Khmer origin. It is most often rendered as ladyboy or lady boy in English conversation with Thais and this latter expression has become popular across Southeast Asia.\n", "\n", "Title: Pornographic magazine\n", "Text: Pornographic magazines, or erotic magazines, sometimes known as adult, sex or top-shelf magazines, are magazines that contain content of an explicitly sexual nature. Publications of this kind may contain images of attractive naked subjects, as is the case in softcore pornography, and, in the usual case of hardcore pornography, depictions of masturbation, oral or anal sex, or intercourse.\n", "\n", "Title: Naj\n", "Text: Naj is a Polish language fortnightly lifestyle and women's magazine published in Warsaw, Poland.\n", "\n", "Title: Roller disco\n", "Text: A roller disco is a discothèque or skating rink where all the dancers wear roller skates of some kind (traditional quad or inline). The music played is modern and easily danceable, historically disco but in modern times including almost any form of dance, pop or rock music. The concept originated as a fad in the 1970s when the disco craze was at its height, peaking around 1980 and inspiring several roller-disco magazines. In 1984 the fad arrived in the United Kingdom and many roller discos popped up all over the country s of 2006 , the craze has largely discontinued, although many 1970s era roller-discos are still open and successful. Also, it experienced a mild revival in the early 2000s, especially in the mid-eastern United States , where certain clubs continue to host roller disco nights. Some now use in-line roller-blades. Roller discos are also popular among older children and young teenagers, especially for parties. As in other discos, special effects such as fog machines and flashing traffic lights are often used. To minimise the risk of injury, the organisers of roller discos often only allow participants to skate in one direction at a time, so that they do not crash into one another, although many roller discos have a \"free skate\" section in the middle of the roller rink.\n", "\n", "Title: Alternative press in Nigeria\n", "Text: The Alternative press in Nigeria or the press of the third kind is made up of writers who use militant approaches or viewpoints in news coverage. This usually encompasses guerrilla journalism, a term credited to some Nigerian news magazines for their radical and militant rhetoric and writings usually against the military regimes of the 1990s. The magazines consider themselves to be the last vestige of the common man and viewed certain military governments as usurpers of the people's dreams and yearnings. These magazines are known for their belligerent assault on national leadership and use of secret offices, sometimes called bush offices to print their publications. Some critics have raised ethnic nationalism and cultural coloration as key factors which provided the impetus for most of the rhetoric.\n", "\n", "Title: Woman's Era\n", "Text: Woman's Era is a fortnightly women interest magazine published in English in India. It was started in 1973 by Vishwanath under his publishing house, the Delhi Press. The magazine is owned by the Delhi Press. Divesh Nath has been the managing editor of the magazine since 2002.\n", "\n", "Question: Woman's Era and Naj are what kind of magazines?\n", "\n", "Answer:\n", "Predictions: Both \"Woman's Era\" and \"Naj\" are women's magazines.\n", "Solutions: fortnightly women interest magazine\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Indian general election, 1996\n", "Text: General elections were held in India in 1996 to elect the members of the 11th Lok Sabha contested by the Congress Party and Bharatiya Janata Party. The result of the election was a hung parliament with neither top two leading securing a mandate. The Bharatiya Janata Party formed a short lived government. United Front, consisting of non Congress, non BJP was created and secured support from 332 members out of the 545 seats in the Lok Sabha, resulting in H.D. Deve Gowda from the Janata Dal being the 11th Prime Minister of India. The 11th Lok Sabha produced three Prime Ministers in two years and forced the country back to the polls in 1998.\n", "\n", "Title: Seaford (UK Parliament constituency)\n", "Text: The UK parliamentary constituency of Seaford was a Cinque Port constituency, similar to a parliamentary borough, in Seaford, East Sussex. A rotten borough, prone by size to undue influence by a patron, it was disenfranchised in the Reform Act of 1832. It was notable for having returned three Prime Ministers as its members – Henry Pelham, who represented the town from 1717 to 1722, William Pitt the Elder from 1747 to 1754 and George Canning in 1827 – though only Canning was Prime Minister while representing Seaford.\n", "\n", "Title: List of Japanese prime ministers by longevity\n", "Text: This is a list of Japanese prime ministers by longevity. It consists of Prime Ministers and Interim Prime Ministers of Japan who have held the office. If a Prime Minister served more than one non-consecutive term, the dates given are for the beginning of their first term, and the end of their last term.\n", "\n", "Title: Rome Protocols\n", "Text: The Rome Protocols were a series of three international agreements signed in Rome on 17 March 1934 between the governments of Austria, Hungary and Italy. They were signed by Italian Prime Minister Benito Mussolini, Austrian Prime Minister Engelbert Dollfuss and Hungarian Prime Minister Gyula Gömbös. All the three protocols went into effect on 12 July 1934 and were registered in \"League of Nations Treaty Series\" on 12 December 1934.\n", "\n", "Title: Yehuda Avner\n", "Text: Yehuda Avner (Hebrew: יהודה אבנר‎ ; December 30, 1928 – March 24, 2015) was an Israeli prime ministerial advisor, diplomat, and author. He served as Speechwriter and Secretary to Israeli Prime Ministers Golda Meir and Levi Eshkol, and as Advisor to Israeli Prime Ministers Yitzhak Rabin, Menachem Begin, and Shimon Peres. Avner served in diplomatic positions at the Israeli Consulate in New York, and the Israeli Embassy to the US in Washington, DC, and as Israel’s Ambassador to Britain, Ireland and Australia. In 2010, he turned his insider stories about Israeli politics and diplomacy into a bestselling book, \"The Prime Ministers\", which subsequently became the basis for a two-part documentary movie. In 2015, his novel, \"The Ambassador\", which Avner co-authored with thriller writer Matt Rees, was posthumously published.\n", "\n", "Title: Commonwealth Prime Ministers' Conference\n", "Text: Commonwealth Prime Ministers' Conference were biennial meetings of Prime Ministers of the United Kingdom and the Dominion members of the British Commonwealth of Nations. Seventeen Commonwealth Prime Ministers' Conferences were held between 1944 and 1969. As well, the prime ministers met for a Commonwealth Economic Conference in 1952. These series of conferences were a continuation and regularisation of the earlier Imperial Conferences which had been held periodically from 1887 to 1937. Since 1971, Commonwealth Heads of Government Meetings have been held.\n", "\n", "Title: Herb Gray\n", "Text: Herbert Eser \"Herb\" Gray, {'1': \", '2': \", '3': \", '4': \"} (May 25, 1931 – April 21, 2014) was a Canadian politician and statesman. He served as a Member of Parliament for four decades. He also served as cabinet minister under three prime ministers, and as Deputy Prime Minister from 1997 to 2002. He was Canada's first Jewish federal cabinet minister. He is one of few Canadians granted the honorific \"The Right Honourable\" who was not so entitled by virtue of a position held.\n", "\n", "Title: List of Prime Ministers of Israel by longevity\n", "Text: This is a list of Israel Prime Ministers, in order of longevity. This list includes Prime ministers and \"acting\" Prime ministers. There are currently thirteen Prime Ministers on the list and three living Prime Ministers. The list is in descending order and is correct as of none }} .\n", "\n", "Title: List of Prime Ministers of Canada by constituency\n", "Text: The following list indicates ridings represented by Canadian Prime Ministers during their term(s) of office. Some Prime Ministers represented more than one constituency during their term(s), hence the tallied numbers exceed the number of Prime Ministers. Moreover, one Prime Minister - Sir Mackenzie Bowell - served his term while a member of the Senate, although he had previously been a member of the House of Commons from Ontario.\n", "\n", "Title: Engelbert Dollfuss\n", "Text: Engelbert Dollfuss (German: \"Engelbert Dollfuß\" , ] ; 4 October 1892 – 25 July 1934) was an Austrian Christian Social and Patriotic Front statesman. Having served as Minister for Forests and Agriculture, he ascended to Federal Chancellor in 1932 in the midst of a crisis for the conservative government. In early 1933, he shut down parliament, banned the Austrian Nazi party and assumed dictatorial powers. Suppressing the Socialist movement in February 1934, he cemented the rule of “austrofascism” through the authoritarian \"First of May Constitution\". Dollfuss was assassinated as part of a failed coup attempt by Nazi agents in 1934. His successor Kurt Schuschnigg maintained the regime until Adolf Hitler's annexation of Austria in 1938.\n", "\n", "Question: The Rome Protocols were signed by three Prime Ministers one of which was assassinated as part of what?\n", "\n", "Answer:\n", "Predictions: as part of a failed coup attempt by Nazi agents.\n", "Solutions: a failed coup attempt\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Storm Corrosion (album)\n", "Text: Storm Corrosion is the self-titled debut album of the musical collaboration between Mikael Åkerfeldt, frontman of Opeth, and Steven Wilson, former frontman of Porcupine Tree. The album was released on May 7, 2012 by Roadrunner Records.\n", "\n", "Title: The Preytells\n", "Text: The Preytells were an Australian indie rock band from Perth, formed in 2004 by Jessica Bennett (a.k.a. Audrey Tell) on lead guitar and backing vocals, Simon Okely (a.k.a. Will Tell) on guitar and lead vocals, Jaclyn Pearson on drums and percussion and Cameron Stewart on bass guitar and backing vocals. Their sole album, \"Flood Songs/June Songs\", was issued in September 2009; before they disbanded later that year. Their single, \"Shout!\" ( May 2008), was nominated for WAM Song of the Year in the Pop category in 2008; while, \"Lord Hold My Hand\", was nominated for the same category in 2009.\n", "\n", "Title: Gaahl\n", "Text: Kristian Eivind Espedal (born 7 August 1975), better known by his stage name Gaahl, is a Norwegian vocalist and artist. He is best known as the former frontman of Norwegian black metal band Gorgoroth. He is also the founder and frontman of Trelldom and Gaahlskagg. Since leaving Gorgoroth he has been involved with God Seed, Wardruna, and Gaahls Wyrd. He was the focus of the documentary \"True Norwegian Black Metal\" and also appeared in the film \"Flukt\".\n", "\n", "Title: Inkwell (band)\n", "Text: Inkwell is an indie rock band from Winter Park, Florida. They have released three full length albums and one EP, as well as a collaboration with former techno artist Floorboard. They are currently signed with One Eleven Records. The band consists of two members, Travis Adams, former frontman from My Hotel Year and Davey Pierce who has worked with of Montreal. The band recently performed a small tour with of Montreal along the east coast. Their most recent album \"Rivers of Blood and Sadness, or Maybe Happy\" was released on iTunes music store April 21, 2009.\n", "\n", "Title: Creed (band)\n", "Text: Creed is an American rock band formed in 1993 in Tallahassee, Florida. The band's best-known line-up consists of lead vocalist Scott Stapp, guitarist and vocalist Mark Tremonti, bassist Brian Marshall, and drummer Scott Phillips. Creed released two studio albums, \"My Own Prison\" in 1997 and \"Human Clay\" in 1999, before Marshall left the band in 2000. The band's third album, \"Weathered\", was released in 2001 with Tremonti handling bass before the band disbanded in 2004 due to increasing tension between members. Tremonti, Marshall, and Phillips went on to found Alter Bridge while Stapp followed a solo career.\n", "\n", "Title: I Get Up\n", "Text: \"I Get Up\" was a single that was released in 2003 by Australian band INXS. The song was written by Andrew Farriss and Jon Stevens. It was the first new material by INXS since their former frontman Michael Hutchence died by suicide on 22 November 1997. The lead singer on \"I Get Up\" is former Noiseworks frontman Jon Stevens. It is the only studio recorded material by INXS with Stevens singing. Stevens resigned from INXS by the end of 2003 because of \"differing views\" about the bands' future.\n", "\n", "Title: Radford (band)\n", "Text: Radford is an alternative rock band from Los Angeles, California. The band formed after lead singer and band nucleus Jonny Radford Mead, former frontman of bass-driven indie rockers Primary, emigrated from Oxford, England to Los Angeles; there he met guitarist Chris Hower, bassist Bobby Stefano and eventually settled on drummer Kane McGee and began touring with a full band. in 1998, the band signed with RCA Records, who released their self-titled debut in 2000. Two songs from this album found their way onto major soundtracks - \"Fall At Your Feet\" on the soundtrack for \"Teaching Mrs. Tingle\", and \"Stay\" on the soundtracks for \"Clubland\", \"Scary Movie\", and \"Never Been Kissed\". A third song, \"Don't Stop\", peaked at No. 32 on the Billboard Modern Rock charts in 2000. The band toured nationally in support of bands such as Oasis, Lit, and Vertical Horizon.\n", "\n", "Title: Jaclyn Stapp\n", "Text: Jaclyn Nesheiwat Stapp (born July 29, 1980) is a beauty queen, philanthropist and fashion model with pageant roots in Florida and New York. She is married to Scott Stapp, former frontman of the band Creed, and current frontman for the band Art of Anarchy. Her most notable titles include Mrs. Florida America 2008 and Miss New York USA 2004. She is executive director of The Scott Stapp With Arms Wide Open Foundation.\n", "\n", "Title: John Altman (actor)\n", "Text: John Clarkson Stewart (born 2 March 1952), known as John Altman, is an English actor and singer, perhaps best known for playing \"Nasty\" Nick Cotton in the popular BBC soap opera \"EastEnders\". He was among the show's original cast members appearing in the very first episode in February 1985 and appeared on the show on and off as a recurring character. His character was killed off in the 30th anniversary episode of the show which aired in February 2015. Altman has also appeared in several other television series and appeared in many stage productions. In 2010 he became the new frontman of the band Heavy Metal Kids following the death of former frontman Gary Holton in 1985.\n", "\n", "Title: Marcus Birro\n", "Text: Marcus Birro (born 15 June 1972 in Gothenburg, Sweden) is a Swedish-Italian (Italian citizen) poet, author and columnist and former frontman of cult punk band The Christer Petterssons. Birro blogged at Expressen and was a presenter on at Sveriges Radio Östergötland, where he was the host of \"Karlavagnen\" on Sveriges Radio P4. He is the brother of author Peter Birro. Marcus Birro lives in Södermalm, is divorced from his wife of 4 years, they have two children together. In 2015, Birro told the press about his ongoing relationship with a married woman, Micaela Kinnunen, wife of politician Martin Kinnunen, and later Kinnunen confirmed the relationship and her divorce via her Facebook page.\n", "\n", "Question: Jaclyn Stapp is married to the former frontman of a band that disbanded in what year?\n", "\n", "Answer:\n", "Predictions: 2004\n", "Solutions: 2004\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sarah Buxton\n", "Text: Sarah Buxton (born July 3, 1980) is an American country music singer, formerly signed to the independent Lyric Street Records. Between 2006 and 2008, she issued three singles from an extended play titled \"Almost My Record\", in addition to co-writing her song \"Stupid Boy\", which was later recorded by Keith Urban. She released her self-titled debut album in early 2010, led off by the Top 25 single \"Outside My Window,\" shortly before Lyric Street Records closed. Shortly afterward, she began performing with Jedd Hughes as the short-lived duo Buxton Hughes before forming Skyline Motel.\n", "\n", "Title: Love and Theft (duo)\n", "Text: Love and Theft is an American country music group founded by Stephen Barker Liles, Eric Gunderson, and Brian Bandas, all three of whom alternated as lead singers and acoustic guiarists. Signed to Lyric Street Records subsidiary Carolwood Records in 2009, Love and Theft made their chart debut in early 2009 with the single \"Runaway,\" which reached the Top 10 on \"Billboard\" Hot Country Songs. The band's debut album, \"World Wide Open\", was released on August 25, 2009.\n", "\n", "Title: Aaron Tippin\n", "Text: Aaron Dupree Tippin (born July 3, 1958) is an American country music artist and record producer. Initially a songwriter for Acuff-Rose Music, he gained a recording contract with RCA Nashville in 1990. His debut single, \"You've Got to Stand for Something\" became a popular anthem for American soldiers fighting in the Gulf War and helped to establish him as a neotraditionalist country act with songs that catered primarily to the American working class. Under RCA's tenure, he recorded five studio albums and a Greatest Hits package. Tippin switched to Lyric Street Records in 1998, where he recorded four more studio albums, counting a compilation of Christmas music. After leaving Lyric Street in 2006, he founded a personal label known as Nippit Records, on which he issued the compilation album \"Now & Then\". A concept album, \"In Overdrive\", was released in 2009.\n", "\n", "Title: Love and Theft (Love and Theft album)\n", "Text: Love and Theft is the second studio album by Eric Gunderson and Stephen Barker Liles in the American country music duo Love and Theft. It was released on July 24, 2012 via RCA Nashville. The album includes the number 1 single \"Angel Eyes.\" The album's second single, \"Runnin' Out of Air,\" was released to country radio in November 2012. The album's third single, \"If You Ever Get Lonely\", was released to country radio on June 3, 2013. This song was originally recorded by John Waite on his 2011 album \"Rough & Tumble\".\n", "\n", "Title: Kevin Denney\n", "Text: Kevin Denney (born January 27, 1978 in Monticello, Kentucky) is an American country music artist. Signed to Lyric Street Records in 2001, he made his debut on the country music scene with the release of his self-titled album (2001's \"Kevin Denney\"), which produced three chart singles, including \"That's Just Jessie\", a Top 20 hit on the \"Billboard\" Hot Country Singles & Tracks (now Hot Country Songs) charts. He was dropped from Lyric Street's roster in 2003, although he co-wrote a track on Tracy Byrd's 2006 \"Different Things\" album.\n", "\n", "Title: Brian McComas\n", "Text: Brian McComas (born May 23, 1972) is an American country music artist. Originally signed to Mercury Nashville Records in 2001, McComas charted two minor singles in 2001 and 2002. A year later, he switched to Lyric Street Records, charting the Top Ten single \"99.9% Sure (I've Never Been Here Before)\" on the \"Billboard\" Hot Country Singles & Tracks charts. His eponymous debut album was also released that year. It produced an additional single before McComas was dropped from Lyric Street. He later signed to Katapult Records, which released his second album, \"Back Up Again\", in 2006.\n", "\n", "Title: Rascal Flatts discography\n", "Text: Rascal Flatts is an American country group founded in 2000 by Gary LeVox, Jay DeMarcus, and Joe Don Rooney. Signed to Lyric Street Records since its foundation, the band has released ten studio albums plus a Greatest Hits package, all on the Lyric Street Records label. Their highest-certified album is \"Feels Like Today\", which is certified 5× Platinum. Except for their 2000 self-titled debut, all of the group's albums have reached No. 1 on the Top Country Albums chart.\n", "\n", "Title: If You Ever Get Lonely\n", "Text: \"If You Ever Get Lonely\" is a song written by Kyle Cook, Lisa Drew, Michael Dulaney, Steven Dale Jones and John Waite. It was originally recorded by Waite on his 2011 album \"Rough & Tumble\" and released as the album's first single. It was covered by American country music duo Love and Theft on their second studio album, \"Love and Theft\", in 2012 and released as the album's third single in June 2013.\n", "\n", "Title: Back to Tennessee\n", "Text: Back to Tennessee is the eleventh studio album released from country music singer Billy Ray Cyrus. The album was released on April 7, 2009, on Lyric Street Records. It is also the follow-up album to 2007s \"Home at Last\". Originally planned to be released in July 2008, the album was pushed to new release dates five times. \" Somebody Said a Prayer\" was released as the album's lead-off single, and was a top 40 hit on the country charts in late 2008. The title track and \"A Good Day\" followed it as the second and third singles, reaching number 47 and number #59, respectively. Also on the album is \"Butterfly Fly Away\", a duet with daughter Miley Cyrus. The song is also on the \"\" soundtrack. Cyrus and Lyric Street Records parted ways shortly after the chart debut of \"A Good Day\".\n", "\n", "Title: Phil Stacey\n", "Text: Joel Philip Stacey (born January 21, 1978) is an American singer who first gained national attention on season 6 of the television talent show \"American Idol\". After being eliminated from the competition on May 2, 2007, he was signed to a recording contract with Lyric Street Records. His debut single, \"If You Didn't Love Me\", was released to radio in early 2008 as the lead-off to his self-titled debut album, which was issued April 29, 2008 on Lyric Street. Stacey's second album, \"Into the Light\", was released on August 25, 2009 via Reunion Records.\n", "\n", "Question: If You Ever Get Lonely was covered by what Lyric Street Records-affiliated band?\n", "\n", "Answer:\n", "Predictions: Love and Theft\n", "Solutions: Love and Theft\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2010–11 Southampton F.C. season\n", "Text: The 2010–11 Southampton F.C. season was the club's 71st and sixth consecutive season in The Football League, and their second in League One. Having narrowly missed out on the chance of promotion the previous season, Southampton were again seeking to reclaim their place in The Championship by being promoted in 2011. Before the commencement of the campaign, Southampton were slated as the favourites to win the League One title by a number of bookmakers, commentators and fans.\n", "\n", "Title: Ronald Koeman\n", "Text: Ronald Koeman (] ; born 21 March 1963) is a former Dutch footballer and the current manager of English club Everton. He is the younger brother of former Feyenoord coach Erwin Koeman and the son of former Dutch international Martin Koeman. A composed player on the ball, Koeman was capable of being deployed both as a defender and as a midfielder, and he frequently played as a sweeper, due to his vision and his ability on the ball. Regarded as one of the best and most prolific attacking central defenders of all time, Koeman was renowned for his long-range passing, as well as his shooting accuracy and power from distance, especially on free kicks, and is the top scoring defender in world football; he was also an accurate penalty kick taker.\n", "\n", "Title: 2016–17 Southampton F.C. season\n", "Text: The 2016–17 Southampton F.C. season was the club's 18th season in the Premier League and their 40th in the top division of English football. In addition to the 2016–17 Premier League, the club also competed in the FA Cup, EFL Cup and UEFA Europa League. The season was the club's only campaign with manager Claude Puel, who took over from Ronald Koeman on 30 June 2016. The club finished eighth in the Premier League table, having won twelve, drawn ten and lost sixteen of their 38 matches played. They were knocked out of the UEFA Europa League at the group stage, having won two, drawn two and lost two of their matches, and the FA Cup in the fourth round, while they finished as runners-up in the EFL Cup Final losing 3–2 to Manchester United.\n", "\n", "Title: 2014–15 Southampton F.C. season\n", "Text: The 2014–15 Southampton F.C. season was the club's 16th season in the Premier League and their 38th in the top division of English football. It was also the club's first season with Dutch manager Ronald Koeman, who replaced Mauricio Pochettino on 16 June 2014. Southampton finished seventh in the Premier League, having won 18, drawn six and lost 14 matches. The club also made it to the fourth round of the FA Cup and the fifth round of the League Cup.\n", "\n", "Title: 2012–13 Feyenoord season\n", "Text: The 2012–13 season was Feyenoord's 105th season of play, it was their 57th season in the Eredivisie and its 91st consecutive season in the highest Dutch football division. The club ended its league campaign in third place, being undefeated at home, and reached the quarter-finals of the KNVB Cup. Their European campaign ended after four matches, two each in the UEFA Champions League and UEFA Europa League. It was the club's second season under manager Ronald Koeman.\n", "\n", "Title: 2017–18 Southampton F.C. season\n", "Text: The 2017–18 Southampton F.C. season is the club's 19th season in the Premier League and 41st in the top division of English football. In addition to the Premier League, the club will also compete in the FA Cup and competed in the EFL Cup. The season is the club's first with manager Mauricio Pellegrino, who replaced the departed Claude Puel after one season in charge on 23 June 2017. As of 30 September 2017, Southampton are twelfth in the Premier League table having won two, drawn two and lost three of their first seven matches of the season. They were knocked out of the EFL Cup in the second round by Wolverhampton Wanderers.\n", "\n", "Title: 2013–14 Southampton F.C. season\n", "Text: The 2013–14 Southampton F.C. season was the club's 15th season in the Premier League, and their 37th in the top division of English football. Having secured their place in the Premier League the previous season following a seven-year absence from the top flight, the club progressed in their league performance and achieved their main aim of a top-ten finish. Southampton finished eighth in the Premier League table, having won 15, drawn 11, and lost 12 of their 38 games played: their best season since 2002–03. They also made it to the fifth round of the FA Cup and the fourth round of the League Cup.\n", "\n", "Title: Mauricio Pochettino\n", "Text: Mauricio Roberto Pochettino (] , ] ; born 2 March 1972) is an Argentine former footballer who played as a central defender, and is the current manager of Premier League club Tottenham Hotspur.\n", "\n", "Title: 1946–47 Southampton F.C. season\n", "Text: The 1946–47 Southampton F.C. season was the club's 18th season in the Football League Second Division and their 20th in the Football League. Southampton finished the season in 14th place in the league table, having won 15, drawn 9 and lost 18 of their 42 matches. The club also made it to the fourth round of the FA Cup. Inside forward Jack Bradley finished the season as the club's top scorer in the league with 14 goals, while centre forward George Lewis finished as joint top scorer in all competitions alongside Bradley, with 15 goals.\n", "\n", "Title: 2013–14 Feyenoord season\n", "Text: The 2013–14 season was Feyenoord's 106th season of play, it marked its 58th season in the Eredivisie and its 92nd consecutive season in the top flight of Dutch football. They ended their league campaign as runners-up. They entered the KNVB Cup in the second round and reached the quarter-final. Their Europa League appearance consisted of the play-off round. It was the third straight season with manager Ronald Koeman, who did not renew his contract at the conclusion of the season.\n", "\n", "Question: When was the Argentine former footballer which Dutch manager Ronald Koeman replaced in 2014–15 Southampton F.C. season born\n", "\n", "Answer:\n", "Predictions: 2 March 1972\n", "Solutions: 2 March 1972\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Prince Hamlet\n", "Text: Prince Hamlet is the title character and protagonist of William Shakespeare's tragedy \"Hamlet\". He is the Prince of Denmark, nephew to the usurping Claudius, and son of King Hamlet, the previous King of Denmark. At the beginning of the play, he struggles with whether, and how, to avenge the murder of his father, and struggles with his own sanity along the way. By the end of the tragedy, Hamlet has caused the deaths of Polonius, Laertes, Claudius, and two acquaintances of his from the University of Wittenberg Rosencrantz and Guildenstern. He is also indirectly involved in the deaths of his love Ophelia (drowning) and of his mother Gertrude (poisoned by Claudius by mistake).\n", "\n", "Title: Macbeth\n", "Text: Macbeth ( ; full title The Tragedy of Macbeth) is a tragedy by William Shakespeare; it is thought to have been first performed in 1606. It dramatises the damaging physical and psychological effects of political ambition on those who seek power for its own sake. Of all the plays that Shakespeare wrote during the reign of James I, who was patron of Shakespeare's acting company, \"Macbeth\" most clearly reflects the playwright's relationship with his sovereign. It was first published in the Folio of 1623, possibly from a prompt book, and is Shakespeare's shortest tragedy.\n", "\n", "Title: Revenge tragedy\n", "Text: Revenge tragedy (less commonly referred to as revenge drama, revenge play, or tragedy of blood) defines a genre of plays made popular in early modern England. Ashley H. Thorndike formally established this genre in his seminal 1902 article \"The Relations of Hamlet to Contemporary Revenge Plays,\" which characterizes revenge tragedy \"as a tragedy whose leading motive is revenge and whose main action deals with the progress of this revenge, leading to the death of the murderers and often the death of the avenger himself.\" Thomas Kyd's \"The Spanish Tragedy\" (c.1580s) is often considered the inaugural revenge tragedy on the early modern stage. However, more recent research extends early modern revenge tragedy to the 1560s with poet and classicist Jasper Heywood's translations of Seneca at Oxford University, including \"Troas\" (1559), \"Thyestes\" (1560), and \"Hercules Furens\" (1561). Additionally, Thomases Norton and Sackville's play \"Gorbuduc\" (1561) is considered an early revenge tragedy (almost twenty years prior to \"The Spanish Tragedy\"). Other well-known revenge tragedies include William Shakespeare's \"Hamlet\" (c.1599-1602) and \"Titus Andronicus\" (c.1588-1593) and Thomas Middleton's \"The Revenger's Tragedy\" (c.1606).\n", "\n", "Title: Romeo\n", "Text: Romeo Montague (Italian: \"Romeo Montecchi\" ) is the protagonist of William Shakespeare's tragedy \"Romeo and Juliet\". The son of Montague and his wife, he secretly loves and marries Juliet, a member of the rival House of Capulet. Forced into exile after slaying Juliet's cousin, Tybalt, in a duel, Romeo commits suicide upon hearing falsely of Juliet's death.\n", "\n", "Title: Shakespearean tragedy\n", "Text: Shakespearean tragedy is the designation given to most tragedies written by playwright William Shakespeare. Many of his history plays share the qualifiers of a Shakespearean tragedy, but because they are based on real figures throughout the History of England, they were classified as \"histories\" in the First Folio. The Roman tragedies—\"Julius Caesar\", \"Antony and Cleopatra\" and \"Coriolanus\"—are also based on historical figures, but because their source stories were foreign and ancient they are almost always classified as tragedies rather than histories. Shakespeare's romances (tragicomic plays) were written late in his career and published originally as either tragedy or comedy. They share some elements of tragedy featuring a high status central character but end happily like Shakespearean comedies. Several hundred years after Shakespeare's death, scholar F.S. Boas also coined a fifth category, the \"problem play,\" for plays that don't fit neatly into a single classification because of their subject matter, setting, or ending. The classifications of certain Shakespeare plays are still debated among scholars.\n", "\n", "Title: Rory Williams\n", "Text: Rory Williams is a fictional character portrayed by Arthur Darvill in the long-running British science fiction television series \"Doctor Who\". Having been introduced at the start of the 5th series, Rory joins the Eleventh Doctor (Matt Smith) as a companion in the middle of Series 5. As Amy Pond's fiancé, Rory is initially insecure because he believes Amy secretly loves the Doctor more. Later, however, he proves to be a hero in his own right and he and Amy marry. The couple conceive a daughter aboard the Doctor's time machine, the TARDIS, while in the time vortex, but their baby is kidnapped at birth. In \"A Good Man Goes to War\", Rory and Amy discover their time-traveler friend River Song is actually their daughter Melody Pond. The Doctor and River marry in \"The Wedding of River Song\", and Rory becomes the Doctor's father-in-law.\n", "\n", "Title: Romeo and Juliet (1954 film)\n", "Text: Romeo and Juliet is a 1954 film adaptation of William Shakespeare's play of the same name. It was directed by Renato Castellani and stars Laurence Harvey as Romeo, Susan Shentall as Juliet, Flora Robson as the Nurse, Mervyn Johns as Friar Laurence, Bill Travers as Benvolio, Sebastian Cabot as Lord Capulet, Ubaldo Zollo as Mercutio, Enzo Fiermonte as Tybalt and John Gielgud as the Chorus.\n", "\n", "Title: Juliet\n", "Text: Juliet Capulet (Italian: \"Giulietta Capuleti\" ) is the female protagonist in William Shakespeare's romantic tragedy \"Romeo and Juliet\". Juliet is the only daughter of the patriarch of the House of Capulet and falls in love with Romeo, a member of the House of Montague (with which the Capulets have a blood feud). The story has a long history that precedes Shakespeare himself.\n", "\n", "Title: Anna Devane\n", "Text: Anna Devane is a fictional character from the original ABC Daytime soap opera, \"General Hospital\", played by Finola Hughes. Hughes also appeared as Anna on \"All My Children\", and the \"General Hospital\" prime time, spin-off series, \"\". The character first appeared on the April 10, 1985 episode of \"General Hospital\" as a fence. The character was created and introduced by executive producer, Gloria Monty, and co-head writers, Pat Falken Smith and Norma Monty. Upon her introduction, Anna is revealed to be the super spy ex-wife of Robert Scorpio and romantic rival to his current wife, Holly Sutton. Anna remained a prominent character in the series until 1992 due to her romantic pairings with Robert and former mobster, Duke Lavery. The storyline in which Duke tries to evade his criminal past with the Jerome family, allows for Duke and Anna to become one of the show's supercouples, along with Robert and Anna. However, the storyline ends in tragedy when Duke dies in Anna's arms. Robert and Anna eventually reunite to raise their daughter, Robin, and eventually remarry; the happiness is short lived and the duo are killed off in 1992 along with their rival, Cesar Faison.\n", "\n", "Title: Benvolio\n", "Text: Benvolio is a fictional character in Shakespeare's drama \"Romeo and Juliet\". He is Montague's nephew and Romeo's cousin. Benvolio serves as an unsuccessful peacemaker in the play, attempting to prevent violence between the Capulet and Montague families.\n", "\n", "Question: Which character does this protagonist, who secretly loves and marries a member of the rival house, of William Shakespeare's tragedy that has a fictional character Benvolio slay?\n", "\n", "Answer:\n", "Predictions: Romeo Montague\n", "Solutions: Tybalt\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Aquino–Binay Campaign, 2010\n", "Text: The Noynoy-Binay campaign or NoyBi began when Senator Francis Escudero endorsed the candidates Benigno \"Noynoy\" Aquino III and Jejomar Binay as President and Vice President respectively. This was done without the consent of the two candidates, especially since Escudero, Binay, and Aquino all come from different political parties. Aquino had Manuel \"Mar\" Roxas II as his running mate for Vice President, while Binay was the Vice Presidential candidate of Joseph Estrada, who was aiming to be elected president for a second time. The campaign was nonetheless successful as Aquino and Binay were elected as President and Vice President of the Philippines.\n", "\n", "Title: Matilde Zimmermann\n", "Text: Matilde Zimmermann (born September 6, 1943) is an American author and professor who ran as the Socialist Workers Party candidate for United States Vice President in 1980. The party had three different Presidential candidates that year, Andrew Pulley, Richard H. Congress and Clifton DeBerry depending on the state. She was at the time a writer for the party newspaper \"The Militant\". Zimmermann also ran as an alternate vice presidential candidate for Andrea Gonzales in some states in 1984; Melvin T. Mason was the presidential candidate.\n", "\n", "Title: Tim Kaine\n", "Text: Timothy Michael Kaine ( , born February 26, 1958) is an American attorney and politician who is the junior United States Senator from Virginia. A Democrat, Kaine was elected to the Senate in 2012 and was the nominee of his party for Vice President of the United States in the 2016 election.\n", "\n", "Title: Mahamudu Bawumia\n", "Text: Mahamudu Bawumia (born 7 October 1963) is a Ghanaian economist and banker and the current Vice President of Ghana. He assumed office on 7 January 2017. He was a Deputy Governor of the Bank of Ghana until his nomination as the vice presidential candidate of the New Patriotic Party (NPP) in 2008, standing alongside presidential candidate Nana Akufo-Addo. He also ran as the NPP vice-presidential candidate in the 2012 general elections and was the lead witness for the petitioners in the 2012/2013 Presidential Election Petition which challenged the declaration of John Mahama as winner of the election. He is married to Samira Ramadan and has four children.\n", "\n", "Title: Running mate\n", "Text: A running mate is a person running together with another person on a joint ticket during an election. The term is most often used in reference to the person in the subordinate position (such as the vice presidential candidate running with a presidential candidate) but can also properly be used when referring to both candidates, such as by saying Joko Widodo and Jusuf Kalla, and Uhuru Kenyatta and William Ruto, were running mates in relation to the most recent presidential elections held in Indonesia and Kenya respectively.\n", "\n", "Title: Willie Mae Reid\n", "Text: Willie Mae Reid is an African-American politician who ran as the Socialist Workers Party candidate for Mayor of Chicago in 1975, winning 16,693 votes but coming in third place against Richard J. Daley. The number had fallen from the number of signatures she'd acquired to get on the ballot, 66,000. She also ran as their vice presidential candidate in 1976 (Presidential candidate: Peter Camejo) and 1992 (Presidential candidate: James \"Mac\" Warren), winning 91,314 votes.\n", "\n", "Title: Stronger Together (book)\n", "Text: Stronger Together: A Blueprint for America's Future is a 2016 book by Hillary Clinton and her vice-presidential running mate Tim Kaine, released during the 2016 U.S. presidential election. It outlines their vision for the nation were they to win the election. The book was published by Simon & Schuster in September 2016.\n", "\n", "Title: Game Change\n", "Text: Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime is a book by political journalists John Heilemann and Mark Halperin about the 2008 United States presidential election. Released on January 11, 2010, it was also published in the United Kingdom under the title Race of a Lifetime: How Obama Won the White House. The book is based on interviews with more than 300 people involved in the campaign. It discusses factors including Democratic Party presidential candidate John Edwards' extramarital affair, the relationship between Democratic presidential nominee Barack Obama and his vice presidential running mate Joe Biden, the failure of Republican Party candidate Rudy Giuliani's presidential campaign and Sarah Palin's vice presidential candidacy.\n", "\n", "Title: Samuel Sam-Sumana\n", "Text: Alhaji Samuel Sidique Sam-Sumana (born April 7, 1962) was a Sierra Leonean politician who was the Vice President of Sierra Leone from September 17, 2007 to March 17, 2015. Sam-Sumana stood as the vice-presidential candidate of the All People's Congress (APC) in the 2007 presidential election, alongside presidential candidate Ernest Bai Koroma. The APC ticket defeated the Sierra Leone People's Party (SLPP) presidential candidate Solomon Berewa and vice presidential candidate Momodou Koroma. Sam-Sumana took office as Vice President on September 17, 2007.\n", "\n", "Title: Unpledged elector\n", "Text: In United States presidential elections, an unpledged elector is a person nominated to stand as an elector but who has not pledged to support any particular presidential or vice presidential candidate, and is free to vote for any candidate when elected a member of the Electoral College. Presidential elections are indirect, with voters in each state choosing electors on Election Day in November, and these electors choosing the President of the United States and Vice President of the United States in December. Electors today are elected in every state by popular vote, and in practice have since the 19th century almost always agreed in advance to vote for a particular candidate — that is, they are said to have been \"pledged\" to that candidate. In the 20th century, however, several elections were contested by unpledged electors, who made no pledge to any candidate before the election. These anomalies largely arose over fissures within the Democratic Party over the issues of civil rights and segregation. No serious general election campaign has been mounted to elect unpledged electors in any state since 1964.\n", "\n", "Question: Stronger Together was used for the campaign comprised of the Vice Presidential candidate who was a Senator from what state?\n", "\n", "Answer:\n", "Predictions: Virginia\n", "Solutions: Virginia\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Rémi Lange\n", "Text: Rémi Lange (born 4 February 1969 in Gennevilliers, Hauts-de-Seine) is a French film director. Lange's films have mostly been released directly to video, except \"Omelette\" (1998) where he filmed his own coming out, and its sequel \"Les Yeux brouillés\" (2000), which both had general cinematic release in France. His films have been shown and have won awards at film festivals around the world.\n", "\n", "Title: Hilde Benjamin\n", "Text: Hilde Benjamin (née Lange, 5 February 1902 – 18 April 1989) was an East German judge and Minister of Justice. She is best known for presiding over a series of political show trials in the 1950s. She is particularly known as responsible for the politically motivated persecution of Erna Dorn and Ernst Jennrich. Hilde Benjamin was widely compared to the Nazi-era judge Roland Freisler and referred to as the \"Red Freisler.\" In his 1994 inauguration speech German President Roman Herzog referenced Benjamin's status as a symbol of injustice, noting that her name was incompatible with the German constitution and the rule of law.\n", "\n", "Title: Darren Lange\n", "Text: Darren Niel Lange (born 5 August 1971), from Toowoomba, Australia is a former freestyle swimming champion. He competed in the Australian Olympic trials on three occasions to qualify for an Australian Team but fell short, although in 1991 he qualified for the World Championship Team. Darren went on to represent Australia on eleven national teams including the 1992 Barcelona Olympics. Two years later Darren achieved gold and silver medals at the 1994 Commonwealth Games in Victoria, Canada.\n", "\n", "Title: Darren Carter (comedian)\n", "Text: Darren Carter is an American actor and stand-up comedian. Carter has performed on \"The Tonight Show\" with Jay Leno, \"Comics Unleashed\", \"Premium Blend\" on Comedy Central, and as a supporting character in the 2005 feature film \"Be Cool\" with John Travolta. Carter debuted on the comedy scene in 1996 with an appearance on Showtime's \"Latino Laugh Festival\" followed by various stand-up performances and guest starring roles on television and in movies. Darren had his own Showtime special titled, \"That Ginger's Crazy.\" He first comedy CD was titled, \"Shady Side.\" His second comedy CD was called, \"That Ginger's Crazy.\" Darren was a guest star on the hit series, \"The Jamie Foxx Show.\" In addition to the movie, \"Be Cool\", Darren was also in the movies \"Savage\", \"Who Made the Potato Salad\", \"Uncle P\", and \"Love Chronicles\", and \"Bobby Khan's Ticket to Hollywood.\" One of his stand-up pieces was also animated for a popular \"Darren Carter Baby Cartoon\" video on YouTube.\n", "\n", "Title: Darren Benjamin Shepherd\n", "Text: Darren Benjamin Shepherd is an American screenwriter and film director. He was born in San Jose, CA and graduated with film and music degrees from San Jose State University.\n", "\n", "Title: Elaenia (album)\n", "Text: Elaenia is the debut studio album by British electronic musician Sam Shepherd, released under his alias Floating Points on 6 November 2015 by Shepherd's own Pluto label and Luaka Bop. Shepherd created the artwork for the album by connecting fibre-optic cables to a home made harmonograph. Shepherd had originally conceived the album to contain only one track but was advised against the idea and eventually cut the music into seven songs. \"Elaenia\"'s title track was named when Shepherd experienced a dream about a bird that became engulfed in a forest after he had been reading the speculative fiction novel \"\" by American neuroscientist David Eagleman which had been given to him by a fan at a concert in San Francisco.\n", "\n", "Title: Statross le Magnifique\n", "Text: Statross le Magnifique is a 2006 film by director Rémi Lange featuring actor Jann Halexander.\n", "\n", "Title: Wyatt Earp's Revenge\n", "Text: Wyatt Earp's Revenge is a 2012 American Western film about the legendary lawman Wyatt Earp. It is a fictionalized account of an actual Old West event, the slaying of beautiful singer Dora Hand in Dodge City, Kansas, when Earp was a deputy there. In one of its many instances of dramatic license, the movie depicts Hand as Earp's sweetheart. The film's framing device is a reporter's interview with an aging Earp, who reminisces about the tragedy. (Val Kilmer plays the older Earp, while Shawn Roberts plays the younger one.) The film was released on March 6, 2012, in the United States. The film was produced by Jeff Schenck and Barry Barnholtz and directed by Michael Feifer. The screenplay was written by Darren Benjamin Shepherd.\n", "\n", "Title: The Artie Lange Show\n", "Text: The Artie Lange Show was an American sports entertainment radio show hosted by comedian Artie Lange, airing from October 2011 to April 2014 on the Audience Network, DirecTV, SiriusXM Satellite Radio and several terrestrial radio stations by Premiere Radio Networks. It originally launched as \"The Nick & Artie Show\" with Lange co-hosting with comedian Nick DiPaolo until DiPaolo's departure in January 2013. The three-hour show aired live from New York City from Monday to Friday at 10:00 p.m EST. From September 7, 2012, the show aired live on the Audience Network on Fridays at 10:00 p.m. EST from Tuesday to Friday.\n", "\n", "Title: Subway (Homicide: Life on the Street)\n", "Text: \"Subway\" (sometimes referred to as \"The Accident\") is the seventh episode of of the American police television drama \"\", and the 84th episode overall. It first aired on NBC in the United States on December 5, 1997. In the episode, John Lange (Vincent D'Onofrio) becomes pinned between a Baltimore Metro Subway train and the station platform. The Baltimore homicide department is informed that Lange will be dead within an hour and Pembleton tries to solve the case while comforting Lange in his final minutes.\n", "\n", "Question: Are Darren Benjamin Shepherd and Rémi Lange both American?\n", "\n", "Answer:\n", "Predictions: No, Darren Benjamin Shepherd is American, but Rémi Lange is French.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sikkim Janashakti Party\n", "Text: Sikkim Janashakti Party (translation: Sikkim People's Power Party), was a political party in the Indian state of Sikkim. SJP was founded in 1997, when Tara Man Rai broke away from Sikkim Ekta Manch. Rai was the president of SJP. In January 1999 SJP merged with Indian National Congress.\n", "\n", "Title: Master of Science\n", "Text: A Master of Science (Latin: \"Magister Scientiae\" ; abbreviated MS, M.S., MSc, M.Sc., MSci, M.Sci., ScM, Sc.M., SciM or Sci.M.) is a master's degree in the field of science awarded by universities in many countries, or a person holding such a degree. In contrast to the Master of Arts degree, the Master of Science degree is typically granted for studies in sciences, engineering, and medicine, and is usually for programs that are more focused on scientific and mathematical subjects; however, different universities have different conventions and may also offer the degree for fields typically considered within the humanities and social sciences. While it ultimately depends upon the specific program, earning a Master of Science degree typically includes writing a thesis.\n", "\n", "Title: Hari Bahadur Basnet\n", "Text: Hari Bahadur Basnet is a Nepalese politician. He is the head of the Foreign Relations Department of the Rastriya Janashakti Party. Basnet holds a M.Sc. in Engineering.\n", "\n", "Title: Gregory Weeks\n", "Text: Gregory Weeks (born 1970) is a lecturer at the International Relations Department at Webster University in Vienna, Austria. He was the Head of the International Relations Department from 2005 until 2011. Weeks teaches and researches civil-military relations, genocide prevention, and twentieth century Austrian and German diplomatic and military history.\n", "\n", "Title: Rastriya Janashakti Mahila Sangh\n", "Text: Rastriya Janashakti Mahila Sangh (Nepali: राष्ट्रिय जनशक्ति महिला संघ ) is a women's organisation in Nepal, politically aligned with the Rastriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Student Union\n", "Text: Rastriya Janashakti Student Union is a students organisation in Nepal. It is the students wing of the Royalist Rashtriya Janashakti Party.\n", "\n", "Title: Rastriya Janashakti Party\n", "Text: Rastriya Janashakti Party is a liberal political party in Nepal, led by former Prime Minister Surya Bahadur Thapa. Thapa had split away from the Rastriya Prajatantra Party in November 2004. The party is registered with the Election Commission of Nepal in March 2005.\n", "\n", "Title: Politics in the San Francisco Bay Area\n", "Text: Politics in the San Francisco Bay Area is widely regarded as one of the most liberal in the country. According to the California Secretary of State, the Democratic Party holds a voter registration advantage in every congressional district, state senate district, state assembly district, State Board of Equalization districts, all nine counties, and all but three of the 101 incorporated municipalities in the Bay Area. The Republican Party holds a voter registration advantage in one state assembly subdistrict (the portion of California's 4th State Assembly district in Solano county) and three cities, Atherton, Hillsborough, and Danville.\n", "\n", "Title: Foreign relations of Finland\n", "Text: The foreign relations of Finland are the responsibility of the President of Finland, who leads foreign policy in cooperation with the government. Implicitly the government is responsible for internal policy and decision making in the European Union. Within the government, preparative discussions are conducted in the government committee of foreign and security policy (\"ulko- ja turvallisuuspoliittinen ministerivaliokunta\"), which includes the Prime Minister and at least the Minister of Foreign Affairs and the Minister of Defence, and at most four other ministers as necessary. The committee meets with the President as necessary. Laws concerning foreign relations are discussed in the parliamentary committee of foreign relations (\"ulkoasiainvaliokunta, utrikesutskottet\"). The Ministry of Foreign Affairs implements the foreign policy.\n", "\n", "Title: ITV (Thailand)\n", "Text: iTV was a television station in Thailand owned by ITV Public Company Limited, a unit of Shin Corporation. Thailand's first UHF channel, the station was started in 1995 when the company was granted a 30-year concession by the Office of the Permanent Secretary to the Prime Minister's Office to operate a free-to-air television station in the Ultra High Frequency (UHF) spectrum at 510-790 MHz (from Channel 26 to 60). After a lengthy dispute over unpaid concession fees to the Prime Minister's Office, iTV was taken in 2007 over by the government's Public Relations Department and its name was changed to Thai Independent Television (TITV). Following a previously unannounced order of Thailand's Public Relations Department delivered the same day, the station closed down operations at the crack of dawn on January 15th, 2008. In accordance with the Public Broadcasting Service Act, the channel's frequency was assigned to the Thai Public Broadcasting Service, or Thai PBS.\n", "\n", "Question: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM, in what field?\n", "\n", "Answer:\n", "Predictions: The head of the Foreign Relations Department of the Rastriya Janashakti Party holds a degree that can be abbreviated MS, M.S., or ScM in the field of Engineering.\n", "Solutions: Engineering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Teen Titans Go!\n", "Text: Teen Titans Go! is a comic book series that was published by DC Comics. It is based on the 2003 animated TV series \"Teen Titans\", which is itself loosely based on the team that starred in the popular 1980s comic \"The New Teen Titans\". The series was written by J. Torres with Todd Nauck and Larry Stucker as the regular illustrators. The series focuses on Robin, Raven, Starfire, Beast Boy, and Cyborg who are the main cast members of the TV series.\n", "\n", "Title: Teen Titans\n", "Text: The Teen Titans, also known as the New Teen Titans and the Titans, are a fictional superhero team appearing in American comic books published by DC Comics, often in an eponymous monthly series. As the group's name suggests, its members are teenage superheroes, many of whom have acted as sidekicks to DC's premiere superheroes in the Justice League. First appearing in 1964 in \"The Brave and the Bold\" #54, the team was founded by Kid Flash (Wally West), Robin (Dick Grayson), and Aqualad (Garth), with the team adopting the name Teen Titans in issue 60 following the addition of Wonder Girl (Donna Troy) to its ranks.\n", "\n", "Title: Jessica Nigri\n", "Text: Jessica Nigri (born August 5, 1989) is a New Zealand-American cosplay celebrity, promotional model, YouTuber, voice actress and fan convention interview correspondent. She has been cosplaying since 2009 and modeling since 2012, having served as an official spokesmodel for several video games and comic book series, including \"Lollipop Chainsaw\" and \"\".\n", "\n", "Title: Tara Strong\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans: Trouble in Tokyo\n", "Text: Teen Titans: Trouble in Tokyo is a 2006 television animated superhero film adaptation of the DC Comics superhero team Teen Titans. It is set in the milieu of the animated series \"Teen Titans\" that ran from 2003–2006. The film premiered on Cartoon Network on September 15, 2006 and on Kids' WB on September 16, 2006. \" Teen Titans\" head writer David Slack returned for this movie.\n", "\n", "Title: Lollipop Chainsaw\n", "Text: Lollipop Chainsaw (ロリポップチェーンソー , Roripoppu Chēn Sō ) is a comedy horror action hack and slash video game developed by Grasshopper Manufacture for the PlayStation 3 and Xbox 360 video game consoles. It features Juliet Starling (voiced by Tara Strong), a cheerleader zombie hunter fighting zombies in a fictional California high school. A collaboration between game designer Suda51 and filmmaker James Gunn, the game was published by Kadokawa Games and Warner Bros. Interactive Entertainment and was released on June 12, 2012 in North America, June 14, 2012 in Japan and June 15, 2012 in Europe.\n", "\n", "Title: List of Teen Titans Go! episodes\n", "Text: \"Teen Titans Go! \" is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts, both of which are based on the 2003 \"Teen Titans\" TV series. \"Teen Titans Go!\" is a more comedic take on the DC Comics franchise, dealing with situations that happen every day. Sporting a new animation style, \"Teen Titans Go!\" serves as a comedic spin-off with no continuity to the previous series, and only certain elements are retained. Many DC characters make cameo appearances and are referenced in the background. The original principal voice cast returns to reprise their respective roles.\n", "\n", "Title: Teen Titans (2005 video game)\n", "Text: Teen Titans is a video game released for the Game Boy Advance on October 16, 2005. The game is based on the television show \"Teen Titans\" and features the five main characters from the show as playable characters: Robin, Raven, Beast Boy, Starfire, and Cyborg. The game's boss characters are Gizmo, Jinx, Mammoth, and Brother Blood. The game was going to be released in Europe shortly after its release in North America, though the European release was later cancelled. A sequel, \"Teen Titans 2: The Brotherhood's Revenge\", often shortened to simply \"Teen Titans 2\", was released exclusively in North America for the Game Boy Advance on October 23, 2006.\n", "\n", "Title: Tara Strong filmography\n", "Text: Tara Strong (born Tara Lyn Charendoff; February 12, 1973) is a Canadian–American actress who has done voice work for numerous animations and video games and performed in various live-action productions. Many of her major voice roles include animated series such as \"Rugrats\", \"The Powerpuff Girls\", \"The Fairly OddParents\", \"Drawn Together\", \"Teen Titans\" and the spin-off series \"Teen Titans Go! \", and \"\", as well as video games such as \"Mortal Kombat X\", \"Final Fantasy X-2\", and the \"\" series. Her portrayals have garnered nominations in the Annie Awards and Daytime Emmys, and an award from the Academy of Interactive Arts & Sciences.\n", "\n", "Title: Teen Titans Go! (TV series)\n", "Text: Teen Titans Go! is an American animated television series based on the DC Comics fictional superhero team, the \"Teen Titans\". The series was announced following the popularity of DC Nation's New Teen Titans shorts.\n", "\n", "Question: Lollipop Chainsaw featured Juliet Starling, who was voiced by a Canadian-American actress who has done voice roles for what Teen Titans spinoff series?\n", "\n", "Answer:\n", "Predictions: Teen Titans Go!\n", "Solutions: Teen Titans Go!\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Bennie Oosterbaan\n", "Text: Benjamin \"Bennie\" Oosterbaan (February 4, 1906 – October 25, 1990) was a three-time first team All-American football end for the Michigan Wolverines football team, two-time All-American basketball player for the basketball team, and an All-Big Ten Conference baseball player for the baseball team. He is widely regarded as one of the greatest football players in Michigan history. He was selected by \"Sports Illustrated\" as the fourth greatest athlete in the history of the U.S. state of Michigan in 2003 and one of the eleven greatest college football players of the first century of the game (ending in 1968).\n", "\n", "Title: Carey Spicer\n", "Text: Carey Alvin Spicer, Jr. (April 23, 1909 – December 5, 1996) was a two-time All-American basketball player at the University of Kentucky. He captained Adolph Rupp's first team in 1930-31, and became Rupp's first All-American. He was also an All-Conference Quarterback for the football team who played varsity tennis and ran track. Rupp called him \"one of the greatest athletes in University of Kentucky history.\"\n", "\n", "Title: Rufus Sisson\n", "Text: Rufus Sisson (September 11, 1890 – March 1977) was an All-American basketball player at Dartmouth College in 1911–12. He led the Eastern Intercollegiate Basketball League in scoring at 12.8 points per game in 10 games played. He was the first Dartmouth player to lead the league in scoring, and only the second All-American (George Grebenstein was named an All-American in 1906).\n", "\n", "Title: Jack Harvey (basketball)\n", "Text: Jack Harvey (August 6, 1918 – November 1981) was an All-American basketball forward/center at the University of Colorado from 1937 to 1940. As a senior in 1939–40, Harvey became the first Buffaloes basketball player to earn a Consensus All-American distinction when he garnered a Second Team accolade. He had also been recognized as a First Team All-American in 1939, although he was not a consensus selection. Harvey led the Buffaloes to two conference championships and a trip to the NCAA Tournament his senior season. During his junior and senior years, Colorado posted a 31–8 record and spent some time as the #1 team in the country.\n", "\n", "Title: Jimmy McNatt\n", "Text: James Carlos \"Jimmy\" McNatt (December 19, 1918 – December 23, 2000) was an All-American basketball player for the Oklahoma Sooners and the AAU’s Phillips 66ers. At Oklahoma, McNatt led his team to the first-ever NCAA Final Four in 1939, and at Phillips 66, McNatt guided the 66ers (also called the \"Oilers\") to four consecutive AAU national championships (1943, 1944, 1945, and 1946). He was a two-time All-American at Oklahoma (1939, 1940) and a four-time AAU All-American for Phillips 66 (1943, 1944, 1945, 1946). The speedy player came to be known by his nickname “Scat” McNatt, a moniker originally traced back to the term “Boy Scats” which sportswriters had used to describe McNatt’s fast-breaking, sophomore-led 1937-38 Oklahoma Sooners basketball team. McNatt grew up in Norman, Oklahoma, attended Norman High School, and then opted to stay in his hometown to play basketball for the University of Oklahoma.\n", "\n", "Title: Oklahoma Sooners men's basketball\n", "Text: The Oklahoma Sooners men's basketball team represents the University of Oklahoma in men's NCAA Division I basketball. The Sooners play in the Big 12 Conference.\n", "\n", "Title: Cornell Green (defensive back)\n", "Text: Cornell M. Green (born February 10, 1940), is a former American football player, a defensive back for thirteen seasons in the National Football League with the Dallas Cowboys. He did not play college football at Utah State University, but was a two-time All-American basketball player for the Aggies, selected in 1962 NBA draft, but not in the NFL draft.\n", "\n", "Title: Ed Koffenberger\n", "Text: Edward Leroy \"Ed\" Koffenberger (July 4, 1926 – September 21, 2014) was an American stand-out basketball and lacrosse player for the Duke University in 1945–46 and 1946–47. He is considered Duke's first \"two-sport star\" even though most of his accolades came from playing basketball. A native of Wilmington, Delaware, Koffenberger is the only First Team All-American basketball player from his home state when the Helms Foundation awarded him the distinction. As a 6 ft center, Koffenberger led the Blue Devils in scoring during both seasons he played for them, and during his senior season of 1946–47, he led the Southern Conference in both scoring and rebounding. He was a two-time All-American and two-time All-Conference selection in basketball, and in lacrosse he was a one-time All-American for his intimidating defensive presence. In 54 career basketball games he scored 733 points, including a then-Duke record 416 in 1946–47.\n", "\n", "Title: Les Witte\n", "Text: Leslie \"Les\" Witte (April 2, 1911 – December 23, 1973), nicknamed \"Beanie\" and \"One Grand Witte\", was a two-time consensus All-American basketball player for the Wyoming Cowboys in 1932 and 1934. A forward, he was the first All-American in University of Wyoming history and was also the first Wyoming player to score 1,000 career points, finishing with 1,069, which was the inspiration for his \"One Grand Witte\" nickname.\n", "\n", "Title: Ike Poole\n", "Text: H. L. \"Ike\" Poole (October 10, 1915 – June 24, 2002) was an All-American basketball player at the University of Arkansas. Hailing from McGehee, Arkansas, Poole lettered three years in football, track and basketball at Arkansas. During his time in Fayetteville, Poole led the Razorbacks to two Southwest Conference titles and was twice named first team All-Conference. As a senior in 1936, Poole was named a consensus All-American and was an alternate on the 1936 Olympic basketball team.\n", "\n", "Question: What team was led to victory in 1939 by a two-time All-American basketball player nicknamed \"Scat\"?\n", "\n", "Answer:\n", "Predictions: Oklahoma Sooners men's basketball\n", "Solutions: Oklahoma Sooners\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Gabriel Arana\n", "Text: Gabriel Arana (born April 10, 1983) is an American journalist. He is currently senior editor at Mic. He was previously a contributing writer at \"Salon\" and a senior editor at \"The Huffington Post\" and \"The American Prospect.\" His articles have appeared in numerous publications, including \"The New York Times\", \"The Atlantic\", \"The New Republic\", \"The Nation\", \"The Advocate\", and \"The Daily Beast\". He is also known for writing a 2012 profile of the ex-gay movement in which psychiatrist Robert Spitzer repudiated his work supporting sexual orientation change efforts. After the article was published, Spitzer released a letter apologizing to the gay community, citing his interaction with Arana. In 2010, Arana was nominated for a GLAAD Media Award for Outstanding Magazine Article for a feature story on the legal challenge to California's Proposition 8. In 2014, he was awarded the National Lesbian and Gay Journalists Association's Excellence in Feature Writing Award for his profile of activist Dan Choi. He has been a guest on television and radio talk shows including \"The Dr. Oz Show\", \"Rachel Maddow\", \"Starting Point\", and \"Talk of the Nation\".\n", "\n", "Title: Is Google Making Us Stupid?\n", "Text: \"Is Google Making Us Stupid? What the Internet is doing to our brains\" (alternatively \"Is Google Making Us Stoopid?\") is a magazine article by technology writer Nicholas G. Carr, and is highly critical of the Internet's effect on cognition. It was published in the July/August 2008 edition of \"The Atlantic\" magazine as a six-page cover story. Carr's main argument is that the Internet might have detrimental effects on cognition that diminish the capacity for concentration and contemplation. Despite the title, the article is not specifically targeted at Google, but more at the cognitive impact of the Internet and World Wide Web. Carr expanded his argument in \"\", a book published by W. W. Norton in June 2010.\n", "\n", "Title: Byline\n", "Text: The byline on a newspaper or magazine article gives the date, as well as the name of the writer of the article. Bylines are commonly placed between the headline and the text of the article, although some magazines (notably \"Reader's Digest\") place bylines at the bottom of the page to leave more room for graphical elements around the headline.\n", "\n", "Title: Isabel dos Santos\n", "Text: Isabel dos Santos (born 20 April 1973) is an Angolan businesswoman. In 2013, according to research by \"Forbes\", her net worth had reached more than three billion US dollars, making her Africa’s first billionaire woman. She is the daughter of Angola's President José Eduardo dos Santos, who has ruled the country since 1979. A \"Forbes\" magazine article described in 2013 how Isabel dos Santos acquired her wealth by taking stakes in companies doing business in Angola, suggesting that her wealth comes almost entirely from her family's power and connections. In November 2015, the BBC named Isabel dos Santos as one of the 100 most influential women in the world.\n", "\n", "Title: The Shallows (book)\n", "Text: The Shallows: What the Internet Is Doing to Our Brains, published in the United Kingdom as The Shallows: How the Internet Is Changing the Way We Think, Read and Remember, is a 2010 book by the American journalist Nicholas G. Carr. The book expands on the themes first raised in \"Is Google Making Us Stupid? \", Carr's 2008 essay in \"The Atlantic\", and explores the effects of the Internet on the brain. The book claims research shows \"online reading\" yields lower comprehension than reading a printed page. \"The Shallows\" was a finalist for the 2011 Pulitzer Prize in General Nonfiction.\n", "\n", "Title: Sara Naomi Lewkowicz\n", "Text: Sara Naomi Lewkowicz is an American photographer best known for her 2013 \"Time\" magazine article \"Photographer as Witness: A Portrait of Domestic Violence\". Her work with the article and Lewkowicz's overall work covering domestic violence won her the Ville de Perpignan Rémi Ochlik Award in 2013. Lewkowicz has attended Ohio University, where she completed a master's degree in Visual Communication.\n", "\n", "Title: The Uninhabitable Earth\n", "Text: \"The Uninhabitable Earth\" is a \"New York\" magazine article by American journalist David Wallace-Wells published on July 9, 2017. The long-form article depicts a pessimistic worst-case scenario of what might happen in the near-future due to global warming. The article starts with the statement \"[i]f your anxiety about global warming is dominated by fears of sea-level rise, you are barely scratching the surface of what terrors are possible.\" Robinson Meyer of \"The Atlantic\" said it is an \"unusually specific and severe depiction of what global warming will do to the planet.\" Susan Matthews writing in \"Slate\" said \"The instantly viral piece might be the \"Silent Spring\" of our time\".\n", "\n", "Title: The Simple Art of Murder\n", "Text: The Simple Art of Murder is hard-boiled detective fiction author Raymond Chandler's critical essay, a magazine article, and his collection of short stories. The essay was first published in \"The Atlantic Monthly\" in December 1944. The magazine article appeared in the \"Saturday Review of Literature\", April 15, 1950. The article, somewhat rewritten, served to introduce the collection \"The Simple Art of Murder\", 1950 (Houghton Mifflin Co.), which contained eight of Chandler's early stories pre-dating his first novel, \"The Big Sleep\".\n", "\n", "Title: AdSense\n", "Text: Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google. They can generate revenue on either a per-click or per-impression basis. Google beta-tested a cost-per-action service, but discontinued it in October 2008 in favor of a DoubleClick offering (also owned by Google). In Q1 2014, Google earned US $3.4 billion ($13.6 billion annualized), or 22% of total revenue, through Google AdSense. AdSense is a participant in the AdChoices program, so AdSense ads typically include the triangle-shaped AdChoices icon. This program also operates on HTTP cookies. Over 14 million websites use AdSense.\n", "\n", "Title: Fanny's\n", "Text: Fanny's Restaurant was a notable eatery located at 1601 Simpson Street Evanston, IL 60201 USA (the first suburb north of the Chicago City Limits) between 1946 and 1987. It was an anomaly in that it was located in a working-class neighborhood and yet known the world over. Patrons included the Marshall Field Family, of department store fame. Both the salad dressing and meat sauce won the International Epicurian Award of France. It was cited by Chicago Magazine as one of the top 40 Chicago restaurants ever. According to that same Chicago Magazine article Kraft Foods offered $75,000 in 1948 to buy Fanny's salad dressing recipe. This offer was refused. The restaurant was closed due to the deteriorating health of the founder, Fanny Lazar née Bianucci. According to the May 11, 1991 Chicago Sun Times and Chicago Tribune obituaries, Fanny Lazar died at Saint Francis Hospital of Evanston. At some point, possibly in the 1960s, Fanny's products became available on grocery shelves and the business continues on today through mail order. For several years the restaurant building at Simpson Street and Ashland Avenue was shuttered, then later occupied by rental tenants. However, during the condominium boom which occurred in the United States during the first ten years of the 21st Century it was heavily altered and converted into loft spaces. According to a July 5, 1998 Chicago Sun Times article a second version of the restaurant was opened in Union Pier, MI. It appears to remain in business as of 2011, as it can be found through searching local tourism web sites. Fanny's in Union Pier Michigan was located in the Gordon Beach Inn, It's no longer in business. Fanny's meat sauce and salad dressing can still be purchased through World Wide Food Products in Evanston, IL\n", "\n", "Question: This expansion of the 2008 magazine article \"Is Google Making Us Stoopid?\" was a finalist for what award?\n", "\n", "Answer:\n", "Predictions: The Pulitzer Prize in General Nonfiction\n", "Solutions: Pulitzer Prize\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Chronicle of Philanthropy\n", "Text: The Chronicle of Philanthropy is a magazine that covers the nonprofit world. Based in Washington, DC, it is aimed at charity leaders, foundation executives, fund raisers, and other people involved in philanthropy. The Chronicle of Philanthropy publishes 12 issues a year while updating its Web site daily. It was founded in 1988 by editor Phil Semas and then managing editor Stacy Palmer. It is owned by The Chronicle of Higher Education Inc., which also publishes \"The Chronicle of Higher Education\", a weekly newspaper covering colleges and universities.\n", "\n", "Title: La Voz de Houston\n", "Text: La Voz de Houston (Spanish: \"The Voice of Houston\") is a Spanish-language weekly newspaper distributed by the \"Houston Chronicle\", and a subsidiary of the \"Houston Chronicle\". The newspaper's offices are located in the \"Houston Chronicle\"'s newspaper production plant at the 610 Loop and U.S. Route 59 (Southwest Freeway). This plant is the former \"Houston Post\" headquarters. Before the \"Chronicle\" acquisition, the paper was published by the La Voz Publishing Corp., headquartered in Houston.\n", "\n", "Title: The Humane Society of the United States\n", "Text: The Humane Society of the United States (HSUS), based in Washington, D.C., is an American nonprofit organization founded by journalist Fred Myers and Helen Jones, Larry Andrews, and Marcia Glaser in 1954, to address what they saw as animal-related cruelties of national scope, and to resolve animal welfare problems by applying strategies beyond the resources or abilities of local organizations. In 2013, the \"Chronicle of Philanthropy\" identified HSUS as the 136th largest charity in the United States in its Philanthropy 400 listing.\n", "\n", "Title: Chronicle of the Market Prices\n", "Text: The Chronicle of Market Prices, designated \"Chronicle 23\" in Grayson’s \"Assyrian and Babylonian chronicles\", its first publishing, and Mesopotamian Chronicle 50: “Chronicle of Market Prices” in Glassner’s \"Mesopotamian Chronicles\" is an ancient Mesopotamian Chronicle laconically recording the cost of various commodities from the beginning of the second until the early-mid first millennium BC. The moniker is a modern designation as it had no colophon to identify it in antiquity.\n", "\n", "Title: The Morning Chronicle\n", "Text: The Morning Chronicle was a newspaper founded in 1769 in London, England, and published under various owners until 1862, when its publication was suspended, with two subsequent attempts at continued publication. From 28 June 1769 to March 1789 it was published under the name \"The Morning Chronicle, and London Advertiser\". From 1789 to its final publication in 1865, it was published under the name \"The Morning Chronicle\". It was notable for having been the first steady employer of essayist William Hazlitt as a political reporter, and the first steady employer of Charles Dickens as a journalist; for publishing the articles by Henry Mayhew that were collected and published in book format in 1851 as \"London Labour and the London Poor\"; and for publishing other major writers, such as John Stuart Mill.\n", "\n", "Title: Global Philanthropy Forum\n", "Text: The Global Philanthropy Forum (GPF) is an initiative of the World Affairs Council which acts as a peer-learning network of philanthropists — grant-makers and social investors — committed to advancing equity and opportunity in the developing world. Its community of donors and social investors work on international causes through strategic philanthropy, operating on principles that overlap with those of impact investing.\n", "\n", "Title: Almanac of American Philanthropy\n", "Text: The Almanac of American Philanthropy is a reference book published by the nonprofit Philanthropy Roundtable in 2016 to capture the history, purpose, effects, and modern direction of private philanthropy in the United States. Philanthropy in the U.S. is a major part of the economy with $360 billion given every year and 8 billion hours of time volunteered. Philanthropy is a major cultural force in the U.S., handling many social responsibilities, thanks to individual giving levels that are two to twenty times higher than in other comparable nations.\n", "\n", "Title: Ric Weiland\n", "Text: Richard W. \"Ric\" Weiland (April 21, 1953 – June 24, 2006) was a computer software pioneer, programmer and philanthropist. He was the second employee at Microsoft Corporation joining the company during his final year at Stanford. When he was 35 he left Microsoft to focus his time on investment management and philanthropy, becoming a quiet but well respected donor to the LGBTQ social justice movement, the environment, health & human services and education. After his death, the Chronicle of Philanthropy called Ric's bequest the 11th largest charitable gift in the nation with more than $165 million distributed between 20 non profit beneficiaries.\n", "\n", "Title: Nonprofit Marketplace Initiative\n", "Text: The Nonprofit Marketplace Initiative (NMI) was an initiative of the Effective Philanthropy Group of the Hewlett Foundation launched in 2006. Its closure was announced in the \"Chronicle of Philanthropy\" in April 2014.\n", "\n", "Title: Antic (magazine)\n", "Text: Antic ( ISSN 0113-1141 ) was a home computer magazine devoted to the Atari 8-bit family (Atari 400/800, XL, XE, XEGS). It was named after the ANTIC chip which provided 2D graphics in the computers. The magazine was published from April 1982 until June/July 1990. \"Antic\" printed type-in programs (usually in BASIC), reviews, and tutorials, among other articles. Each issue contained one type-in game as \"Game of the Month.\"\n", "\n", "Question: What year did The Chronicle of Philanthropy's publishing overlap with Antic?\n", "\n", "Answer:\n", "Predictions: The years of overlap in publishing between The Chronicle of Philanthropy and Antic are 1988, 1989, and 1990.\n", "Solutions: 1988\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Herbert Matayoshi\n", "Text: Herbert Tatsuo Matayoshi (November 21, 1928 – July 11, 2011) was an American politician and businessman. Matayoshi served as the Mayor of Hawaii County from 1974 to 1984. He was the third Mayor of Hawaii County, as well as its second elected Mayor overall. Matayoshi was also the longest serving Mayor of Hawaii County to date, holding the office for ten years.\n", "\n", "Title: Mayor of Hawaii County\n", "Text: The Mayor of Hawaii is the chief executive officer of the County of Hawaii in the state of Hawaii. He or she has municipal jurisdiction over the Big Island of Hawaii. The current mayor is Harry Kim. The Mayor of Hawaii County is the successor of the Royal Governors of Hawaii Island of the Kingdom of Hawaii.\n", "\n", "Title: Hilo, Hawaii\n", "Text: Hilo ( ) is the largest settlement and census-designated place (CDP) in Hawaii County, Hawaii, which encompasses the Island of Hawaiʻ i. The population was 43,263 at the 2010 census.\n", "\n", "Title: W. H. Shipman House\n", "Text: W. H. Shipman House is a historic home used by William Herbert Shipman. It is located at 141 Kaʻ iulani Street, named for Princess Kaʻ iulani, the last crown princess of the Kingdom and Liliʻ uokalani's niece.\n", "\n", "Title: Hōnaunau, Hawaii\n", "Text: Hōnaunau (also spelled Honaunau) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies just off Hawaii Belt Road on the opposite side of the island from Hilo, the county seat of Hawaii County. Its elevation is 52 feet (16 m). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Honaunau\" in 1914 and 1954 before changing to the current spelling in 2000. Although it is unincorporated, it has a post office, with the ZIP code 96726.\n", "\n", "Title: ʻŌʻōkala, Hawaii\n", "Text: ʻ Ōʻ ōkala (also spelled Ookala) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 371 feet (113 m), and it is located at (20.0175000, -155.2872222). Because the community has borne multiple names, the Board on Geographic Names officially designated it \"ʻ Ōʻ ōkala\" in 2000. Although it is unincorporated, it has a post office, with the ZIP code of 96774.\n", "\n", "Title: Stephen K. Yamashiro\n", "Text: Stephen Kei Yamashiro (July 15, 1941 – May 24, 2011) was an American politician and lawyer who served as the former Mayor of Hawaii County from 1992 to 2000. Yamashiro served on the Hawaii County council from 1976 to 1990, including eleven years as the council's chairman. He then served as the Mayor of Hawaii for two consecutive, four-year terms from 1992 until 2000.\n", "\n", "Title: Hawaii County, Hawaii\n", "Text: Hawaiʻ i County is a county located in the U.S. state of Hawaii in the Hawaiian Islands. It is coterminous with the Island of Hawaiʻ i, often called the \"Big Island\" to distinguish it from the state as a whole. As of the 2010 Census the population was 185,079. The county seat is Hilo. There are no incorporated cities in Hawaiʻ i County (see Hawaii Counties). The Hilo Micropolitan Statistical Area includes all of Hawaiʻ i County. Hawaiʻ i County has a mayor-council form of government. Hawaii County is the largest county in the state, in terms of geography.\n", "\n", "Title: Pāpaʻaloa, Hawaii\n", "Text: Papaʻ aloa (also spelled Papaaloa) is an unincorporated community on the island of Hawaii in Hawaii County, Hawaii, United States. It lies along Hawaii Route 19 north of Hilo, the county seat of Hawaii County. Its elevation is 10 feet (3 m) Because the community has borne multiple names, the Board on Geographic Names officially designated it \"Papaaloa\" in 1914 and 1954 before assigning the current name in 2001. Although it is unincorporated, it has a post office, with the ZIP code of 96780.\n", "\n", "Title: William Herbert Shipman\n", "Text: William Herbert Shipman (1854–1943) was a wealthy businessman on the island of Hawaii. One estate of his family was used to preserve an endangered species of Hawaiian goose. A historic house associated with his family for over a hundred years is called the W. H. Shipman House in Hilo, Hawaii. Another of his historic estates called the Ainahou Ranch, built in 1941 as a refuge from World War II, is preserved within Hawaii Volcanoes National Park.\n", "\n", "Question: The W. H. Shipman House is in what Hawaii county?\n", "\n", "Answer:\n", "Predictions: The W. H. Shipman House is in Hawaii County.\n", "Solutions: Hawaii County\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2006 Idaho Vandals football team\n", "Text: The 2006 Idaho Vandals football team represented the University of Idaho during the 2006 NCAA Division I FBS football season. Idaho competed as a member of the Western Athletic Conference (WAC), and played their home games in the Kibbie Dome, an indoor facility on campus in Moscow, Idaho. The Vandals were led by Dennis Erickson, hired following the departure of Nick Holt for an assistant's position at USC in February 2006. Erickson was previously the head coach of the Vandals from 1982-85, his first collegiate head coaching position.\n", "\n", "Title: Little Brown Stein\n", "Text: The Little Brown Stein is a rivalry trophy awarded to the winner of the college football game between the University of Idaho Vandals and University of Montana Grizzlies. The trophy is, as the name implies, a large stein mug with the results of all the games between the two painted on.\n", "\n", "Title: 1957 Idaho Vandals football team\n", "Text: The 1957 Idaho Vandals football team represented the University of Idaho in the 1957 college football season. The Vandals were led by fourth-year head coach Skip Stahley and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: Beer stein\n", "Text: Beer stein ( ), or simply stein, is an English neologism for either traditional beer mugs made out of stoneware, or specifically ornamental beer mugs that are usually sold as souvenirs or collectibles. In German, the word \"stein \" means stone and is not used to refer to a beverage container.\n", "\n", "Title: 1972 Idaho Vandals football team\n", "Text: The 1972 Idaho Vandals football team represented the University of Idaho in the 1972 college football season. The Vandals were led by third-year head coach Don Robbins and were members of the Big Sky Conference, then in the college division of the NCAA. They played their home games at new Idaho Stadium, an unlit outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1964 Idaho Vandals football team\n", "Text: The 1964 Idaho Vandals football team represented the University of Idaho in the 1964 college football season. The Vandals were led by third-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1947 Idaho Vandals football team\n", "Text: The 1947 Idaho Vandals football team represented the University of Idaho in the 1947 college football season. The Vandals were led by first-year head coach Dixie Howell, and were members of the Pacific Coast Conference. Home games were played on campus in Moscow at Neale Stadium, with one game in Boise at Public School Field. The Vandals were 4–4 overall and 1–4 in conference play.\n", "\n", "Title: 1971 Idaho Vandals football team\n", "Text: The 1971 Idaho Vandals football team represented the University of Idaho in the 1971 college football season. The Vandals, led by second-year head coach Don Robbins, were members of the Big Sky Conference and played the final three of their five home games at the new Idaho Stadium, an outdoor facility on campus in Moscow, Idaho.\n", "\n", "Title: 1963 Idaho Vandals football team\n", "Text: The 1963 Idaho Vandals football team represented the University of Idaho in the 1963 college football season. The Vandals were led by second-year head coach Dee Andros and were an independent in the NCAA's University Division. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Title: 1952 Idaho Vandals football team\n", "Text: The 1952 Idaho Vandals football team represented the University of Idaho in the 1952 college football season. The Vandals were led by second-year head coach Raymond \"Babe\" Curfman and were members of the Pacific Coast Conference. Home games were played on campus at Neale Stadium in Moscow, with one home game in Boise at old Bronco Stadium at Boise Junior College.\n", "\n", "Question: The trophy given to the winner of the college football game between University of Idaho Vandals and University of Montana Grizzlies is derived from which European culture?\n", "\n", "Answer:\n", "Predictions: The trophy is derived from German culture.\n", "Solutions: German\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Trenton Lightning\n", "Text: The Trenton Lightning were an indoor professional football team founded in 2000 by owner/general manager, Phillip J. Subhan and local businessman, Kenneth Samu. The team started the 2001 season in the Indoor Professional Football League (IPFL) and were led by head coach (ex-NFL RB) Vaughn Hebron (played for the Philadelphia Eagles, Denver Broncos and Indianapolis Colts) and the team played its home games at the Sovereign Bank Arena, capacity 7,605 in Trenton, NJ. The team was originally scheduled for a 16-game season (eight home and eight away games), But, the team was to fold after only 6 games. The team's Director of Football operations was Marty Yukichak and the team had a front office staff of seven others in addition to a coaching staff of eight, including Hebron. The team's defensive coordinator was Chuck Murphy and offensive coordinator was Tom Cocuzza.\n", "\n", "Title: 2013 Weber State Wildcats football team\n", "Text: The 2013 Weber State Wildcats football team represented Weber State University in the 2013 NCAA Division I FCS football season. Jody Sears returned as the head coach for the 2013 season, after being the interim head coach during 2012, and will be working with a new offensive coordinator and defensive coordinator in Robin Pflugrad and Eric Lewis. Weber State played their home games at Stewart Stadium. They were a member of the Big Sky Conference. They finished the season 2–10, 1–7 in Big Sky play to finish in a tie for 11th place.\n", "\n", "Title: UNLV Rebels football\n", "Text: The UNLV Rebels football program is a college football team that represents the University of Nevada, Las Vegas (UNLV). The team is currently a member of the Mountain West Conference, which is a Division I Bowl Subdivision (formerly Division I-A) conference of the National Collegiate Athletics Association (NCAA). The program which began on September 14, 1968, is coached by former Bishop Gorman High School head coach, Tony Sanchez. The team's home games are played at Sam Boyd Stadium in Whitney, Nevada.\n", "\n", "Title: Kent Baer\n", "Text: Kent Lex Baer (born May 2, 1951) is an American college football coach. He is the defensive coordinator for UNLV Rebels.\n", "\n", "Title: 2015 Wisconsin Badgers football team\n", "Text: The 2015 Wisconsin Badgers football team represented the University of Wisconsin–Madison in the 2015 NCAA Division I FBS football season. The Badgers, led by first-year head coach Paul Chryst, were members of the West Division of the Big Ten Conference and played their home games at Camp Randall Stadium. On January 13, 2015, the Badgers hired offensive coordinator Joe Rudolph. The Badgers were the media preseason favorites to win the Big Ten West division. During fall camp prior to the start of the season Chryst announced the Badgers would return to a pro-style punt scheme instead of the shield punt scheme, also known as the spread punt scheme. Two days after Wisconsin played in the Holiday Bowl defensive coordinator Dave Aranda was hired by LSU as their new defensive coordinator. At the end of the season, Wisconsin featured the #1 defense in college football, with opponents averaging just 13.1 points per game against the Badgers.\n", "\n", "Title: 2016 South Carolina Gamecocks football team\n", "Text: The 2016 South Carolina Gamecocks football team represented the University of South Carolina in the 2016 NCAA Division I FBS football season. The Gamecocks played their home games at Williams-Brice Stadium in Columbia, South Carolina and competed in the Eastern Division of the Southeastern Conference (SEC). The Gamecocks first-year head coach was Will Muschamp, with Kurt Roper as offensive coordinator and Travaris Robinson as defensive coordinator. They finished the season 6–7, 3–5 in SEC play to finish in a tie for fifth place in the Eastern Division. They were invited to the Birmingham Bowl where they lost to South Florida in overtime.\n", "\n", "Title: 2016 Texas Longhorns football team\n", "Text: The 2016 Texas Longhorns football team, known variously as \"Texas\", \"UT\", the \"Longhorns\", or the \"Horns\", was a collegiate American football team representing the University of Texas at Austin as a member of the Big 12 Conference in the 2016 NCAA Division I FBS football season; the 2016 team was the 124th to represent the university in college football. The Longhorns were led by third-year head coach Charlie Strong with Sterlin Gilbert as the team's offensive coordinator and Vance Bedford as the team's defensive coordinator. The team played its home games at Darrell K Royal–Texas Memorial Stadium in Austin, Texas, where the team is based.\n", "\n", "Title: 2012 Arkansas State Red Wolves football team\n", "Text: The 2012 Arkansas State Red Wolves football team represents Arkansas State University in the 2012 NCAA Division I FBS football season. They were led by first year head coach Gus Malzahn and played their home games at Liberty Bank Stadium as members of the Sun Belt Conference. Arkansas State recorded a Sun Belt conference championship on the way to a 10-3 season. Malzahn vacated the position prior to the team's bowl game to assume the head coach position at Auburn University. Defensive coordinator John Thompson led the team as interim head coach to victory over the Kent State Golden Flashes in the 2013 GoDaddy.com Bowl.\n", "\n", "Title: 2017 Wyoming Cowboys football team\n", "Text: The 2017 Wyoming Cowboys football team represents the University of Wyoming during the 2017 NCAA Division I FBS football season. The Cowboys are coached by fourth-year head coach Craig Bohl and play their home games at War Memorial Stadium. They participate in the Mountain Division of the Mountain West Conference. This is their first year with new defensive coordinator Scottie Hazelton, who was previously an NFL linebackers coach with Jacksonville Jaguars for three seasons and was also Bohl's defensive coordinator for two seasons at North Dakota State.\n", "\n", "Title: 2013 Texas Longhorns football team\n", "Text: The 2013 Texas Longhorns football team (variously \"Texas,\" \"UT,\" the \"Longhorns,\" or the \"Horns\") represented the University of Texas at Austin in the 2013 NCAA Division I FBS football season, as a member of the Big 12 Conference. The Longhorns were led by 16th-year head coach Mack Brown and played their home games at Darrell K Royal–Texas Memorial Stadium (DKR). The team was also coached by offensive coordinators Major Applewhite and Darrell Wyatt, as well as defensive coordinator Greg Robinson; Manny Diaz was defensive coordinator to begin the season but was fired following the team's second game against Brigham Young (BYU).\n", "\n", "Question: What stadium does the team who has Kent Baer as the defensive coordinator play its home games?\n", "\n", "Answer:\n", "Predictions: \"Sam Boyd Stadium\"\n", "Solutions: Sam Boyd Stadium\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Special Forces Regiment (Airborne)\n", "Text: The Special Forces Regiment (Airborne) is a special forces unit of the Philippine Army and one of three specialized regiments of the Special Operations Command. The unit is based on and continually trains with its american counterpart, the U.S. Army Special Forces (Green Berets).\n", "\n", "Title: Special Air Service\n", "Text: The Special Air Service (SAS) is a special forces unit of the British Army. The SAS was founded in 1941 as a regiment, and later reconstituted as a corps in 1950. The unit undertakes a number of roles including covert reconnaissance, counter-terrorism, direct action and hostage rescue.\n", "\n", "Title: Special Operations Force (Singapore)\n", "Text: The Special Operations Force (SOF) is the Republic's Army Special Forces composed of highly trained elite soldiers within the Singapore Armed Forces Commando Formation and an essential component of the joint special forces unit Special Operations Task Force (SOTF). According to the Principles of Special Forces, the Republic's special forces thrive on their exceptional qualities and advanced skills, consisting highly adaptive individuals who are independent and can operate independently, and the Republic's special forces soldiers cannot be mass-produced and must be managed carefully.\n", "\n", "Title: Giretsu Kuteitai\n", "Text: Giretsu (義烈空挺隊 , Giretsu Kūteitai ) (\"Heroic Paratroopers\") was an airlifted special forces unit of the Imperial Japanese Army formed from Army paratroopers, in November 1944 as a last-ditch attempt to reduce and delay Allied bombing raids on the Japanese home islands. The \"Giretsu\" Special Forces unit was commanded by Lieutenant General Michio Sugahara.\n", "\n", "Title: 1º Compañía de Comandos "Iquique"\n", "Text: The 1st Commandos Company \"Iquique\" (\"1º Compañía de Comandos \"Iquique\"\" in Spanish) is special forces unit under the jurisdiction of northern Chile. The unit is part of the 2nd Armored Brigade \"Cazadores\" (\"2º Brigada Acorzada \"Cazadores\"\" in Spanish) of the Sixth Army Division based in the first region of the country. The Chilean Army has been restructured into more independent armored brigades and shaped only by professional people, meaning that each squad possesses a special forces unit.\n", "\n", "Title: Operation Cold Comfort\n", "Text: During World War II, Operation Cold Comfort was a failed SAS raid that began with a parachute drop north of Verona on February 17, 1945. It was later renamed Zombie.\n", "\n", "Title: Joint Special Operations Command (Jordan)\n", "Text: The Special Operation Forces of the Jordanian Armed Forces serve as Jordan's premiere special forces unit. Founded on April 15, 1963 on the orders of the late King Hussein, its primary roles include reconnaissance, counter-terrorism, search and evacuation, intelligence gathering combat, and the protection of key sites. The Special Operation Forces are also charged with carrying out precision strikes against critical enemy targets. The 14,000-strong unit are equipped and trained to be able to operate behind enemy lines for long periods without any logistical support, and is considered one of the finest special forces units in the world.\n", "\n", "Title: Cold Comfort (Inside No. 9)\n", "Text: \"Cold Comfort\" is the fourth episode of the second series of the British dark comedy anthology television programme \"Inside No. 9\". The episode, which was written and directed by Steve Pemberton and Reece Shearsmith, was first broadcast on 16 April 2015 on BBC Two. Most of \"Cold Comfort\" is composed of a stream from a fixed camera on the desk of Andy, the protagonist, with smaller pictures on the side of the screen, in the style of a CCTV feed. \"Cold Comfort\" was filmed over two and a half days in Twickenham, and was, like \"A Quiet Night In\" from \"Inside No. 9\"'s first series, highly experimental. It was Pemberton and Shearsmith's directorial debut.\n", "\n", "Title: Jan Breytenbach\n", "Text: Jan Dirk Breytenbach {'1': \", '2': \", '3': \", '4': \"} (born 4 July 1933) was appointed by General Fritz Loots, the founder of the South African Special Forces Brigade, as the first commander of 1 Reconnaissance Commando, the first unit founded within the South African Special Forces. He was also appointed as the first commander of the 32 Battalion, known colloquially as \"Buffalo Battalion\", as well as 44 Parachute Brigade.\n", "\n", "Title: Cuerpo de Fuerzas Especiales\n", "Text: The Mexican Cuerpo de Fuerzas Especiales (Special Forces Corps) is a special forces unit of the Mexican Army. Formerly the \"GAFE\" (Grupo Aeromóvil de Fuerzas Especiales | Special-Forces Airmobile Group), the SF Corps has six battalions; one is the \"Fuerza especial de reaccion\", a quick-response unit, and one is assigned to the Paratroopers Rifle Brigade; the motto of the SF Corps is \"Todo por México\" (Everything for Mexico). Within the SF Corps, there are regular, intermediate, and veteran -service troops. The regular-service soldiers usually operate as light infantry. The intermediate-service soldiers (lieutenants and captains) usually are instructors. The veteran-service soldiers of the Grupo Aeromóvil de Fuerzas Especiales del Alto Mando (GAFE High Command) handle Black-Ops missions. Also known as the COIFE, the Special Forces Corps of the Mexican Army is equivalent to the U.S. Army Special Forces.\n", "\n", "Question: Operation Cold Comfort was a failed raid by a special forces unit founded in what year?\n", "\n", "Answer:\n", "Predictions: 1941\n", "Solutions: 1941\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Académie Diplomatique Internationale\n", "Text: The Académie Diplomatique Internationale (ADI; english \"International Diplomatic Academy\") is an international organization based in Paris, France, focused on modern diplomacy and international affairs. Founded in 1926, the ADI was, along with Chatham House in London and the Council on Foreign Relations in New York, one of the first policy institutions devoted to the sustained study and analysis of international relations. Early members included Aristide Briand, Nicolae Titulescu, Gustav Stresemann, and Franklin D. Roosevelt. Under the Presidency of His Highness the Aga Khan IV, who was elected in 2000, the ADI has focused its efforts on diplomatic training and emerging dynamics in international relations and modern diplomacy.\n", "\n", "Title: George McKelvey (mayor)\n", "Text: George M. McKelvey is an American politician. A Democrat, he served two terms as Mayor of Youngstown, Ohio, from 1998 to 2005. Prior to serving as mayor, he served two terms as the Treasurer of Mahoning County. He has also been a teacher, school administrator and city council member in Youngstown.\n", "\n", "Title: Richard Sherman (MP)\n", "Text: Richard Sherman (\"fl.\" 1364-1397) was an English ironmonger and property owner in Derby, who served two terms as a bailiff and served two terms as a Member of Parliament from Derby, being chosen first in November 1384 (serving with John de Stockes) and again in 1391 (with Thomas Docking).\n", "\n", "Title: Hajime Hirota\n", "Text: Hajime Hirota (広田 一 , Hirota Hajime , born October 10, 1968) is a Japanese politician of the Democratic Party and a former member of the House of Councillors in the National Diet, having served two terms from 2004 until 2016. He previously served two terms in the Kōchi Prefectural Assembly from 1995 until 2001.\n", "\n", "Title: Nicolae Titulescu\n", "Text: Nicolae Titulescu (] ; March 4, 1882 – March 17, 1941) was a well-known Romanian diplomat, at various times government minister, finance and foreign minister, and for two terms President of the General Assembly of the League of Nations (1930–32).\n", "\n", "Title: Gheorghe Tătărescu\n", "Text: Gheorghe I. Tătărescu (also known as \"Guță Tătărescu\", with a slightly antiquated pet form of his given name; 2 November 1886 – 28 March 1957) was a Romanian politician who served 36th Prime Minister of Romania (1934–1937; 1939–1940), three times as Minister of Foreign Affairs (\"interim\" in 1934 and 1938; appointed to the office in 1945-1947), and once as Minister of War (1934). Representing the \"young liberals\" faction inside the National Liberal Party (PNL), Tătărescu began his political career as a collaborator of Ion G. Duca, becoming noted for his anti-Communism and, in time, for his conflicts with the PNL's leader Dinu Brătianu and the Foreign Minister Nicolae Titulescu. During his first time in office, he moved closer to King Carol II, leading an ambivalent policy toward the fascist Iron Guard and ultimately becoming instrumental in establishing the authoritarian and corporatist regime around the National Renaissance Front. In 1940, he accepted the cession of Bessarabia and Northern Bukovina to the Soviet Union, and consequently had to resign.\n", "\n", "Title: Frank Jackson (Alabama)\n", "Text: Walter Frank Jackson (born March 13, 1915, died 1983), was an Alabama Democratic politician, former business, civic leader, and representative from Opp, Alabama. Jackson served several terms as a member of the Alabama House of Representatives from this area. In addition, he served two terms on the Opp City Council from 1952 to 1960; he was a charter member of the Opp Lions Club in 1946, served as president of that organization from 1945 to 1950, and was still an active member at the time of his death; he was a member of the Opp City Board of Education from 1951 to 1952; he served two years as president of the Opp Chamber of Commerce from 1950 to 1951 and from 1962 to 1963; he served as Worshipful Master of Opp Lodge number 605 from 1949 to 1951 (Freemasons).\n", "\n", "Title: Ghimpețeni\n", "Text: Ghimpețeni is a commune in Olt County, Romania. It is composed of two villages, Ghimpețeni and Ghimpețenii Noi. These were part of Nicolae Titulescu Commune until 2004, when they were split off.\n", "\n", "Title: Susan Combs\n", "Text: Susan Combs (born February 26, 1945) is a Republican politician from the U.S. state of Texas, who served from 2007 to 2015 as the state's Comptroller of Public Accounts. Prior to her tenure as Comptroller, Combs had served two terms as Commissioner of the Texas Department of Agriculture from 1999–2007, taking the reins as the first woman elected to that office in 1998. Combs also served two terms in the Texas House of Representatives. On July 10, 2017, Combs was nominated by U.S. President Donald Trump to be the Assistant Secretary of the Interior for Policy, Management and Budget.\n", "\n", "Title: League of Nations\n", "Text: The League of Nations (abbreviated as LN in English, \"La Société des Nations \" ] abbreviated as SDN or SdN in French) was an intergovernmental organisation founded on 10 January 1920 as a result of the Paris Peace Conference that ended the First World War. It was the first international organisation whose principal mission was to maintain world peace. Its primary goals, as stated in its Covenant, included preventing wars through collective security and disarmament and settling international disputes through negotiation and arbitration. Other issues in this and related treaties included labour conditions, just treatment of native inhabitants, human and drug trafficking, the arms trade, global health, prisoners of war, and protection of minorities in Europe. At its greatest extent from 28 September 1934 to 23 February 1935, it had 58 members.\n", "\n", "Question: The organization that Nicolae Titulescu served two terms as president was founded on what date?\n", "\n", "Answer:\n", "Predictions: January 10, 1920\n", "Solutions: 10 January 1920\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Opry Mills\n", "Text: Opry Mills is a super-regional shopping mall owned by Simon Property Group, formerly by its initial owners Mills Corporation and Gaylord Entertainment. It opened in Nashville, Tennessee in 2000 on the former site of the Opryland USA theme park.\n", "\n", "Title: Grand Ole Opry\n", "Text: The Grand Ole Opry is a weekly country-music stage concert in Nashville, Tennessee, which was founded on November 28, 1925, by George D. Hay as a one-hour radio \"barn dance\" on WSM. Currently owned and operated by Opry Entertainment (a division of Ryman Hospitality Properties, Inc.), it is the longest-running radio broadcast in US history, albeit not the longest-running one on a radio network. Dedicated to honoring country music and its history, the Opry showcases a mix of famous singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, gospel, and comedic performances and skits. It attracts hundreds of thousands of visitors from around the world and millions of radio and Internet listeners.\n", "\n", "Title: Keith Bilbrey\n", "Text: Keith Bilbrey (born August 14, 1952) is an American country music disc jockey and television host in Nashville, Tennessee. He served as a disc jockey at Nashville's WSM, as an announcer on the Grand Ole Opry, and as the host of TNN’s Grand Ole Opry Live.\n", "\n", "Title: Nashville Terminal Subdivision\n", "Text: The Nashville Terminal Subdivision is a railroad line owned by CSX Transportation in the U.S. State of Tennessee. The Subdivision is broken up into 5 sections all in Nashville, Tennessee. The northern part of the Terminal is in Madison, Tennessee at milepost 000/0BA 174 on the southern end of the Ex-L&N Mainline Subdivision at Monfort. Disptach for the Mainline Sub is known as \"LD\" which is part of the Cincinnati Division. From here in Madison begins the double track that stays for another 22 miles south to Brentwood, Tennessee. At milepost 000/0BA/00H 176.6, the famous Johnny Cash \"Amqui\" location where the Ex-L&N Evansville, Indiana line, the Henderson Subdivision meets with the Terminal. Dispatch for the Henderson Sub is known as \"SA\" and operates on AAR58. There are two crossings near each other, Williams Ave and Nesbitt Lane at Amqui. From here the Terminal goes south about 2 miles to the Nashville National Cemetery to the first major location, known as Ekin, 000179, where there is a cross over track from number 1 to number 2 track (left to right track). There is also the first EDD (Defect Detector) at 000179.1. Few more miles southward, the next major location appears. At 000181.0, Maplewood is a major location for the Terminal. From here the regular Terminal goes south to swap crews at Kayne Ave, and the right side, Radnor Cutoff, detours the city and gives yard departures and arrivals direct access to and from Radnor yard to cities like Louisville and Chicago. The Cutoff runs from Maplewood to Shelby Park double track. From Shebly the track converges into one to pass the historic Shelby bridge, then it opens back to double track. From there, the cutoff hits the Intermediates at 0BA187.0 known as Chicken Pike. The Radnor Cutoff carries the L&N mainline classification of \"0BA\" but meets the main at the same milepost from the Terminal. At Chicken Pike, trains are staged to await arrival to Radnor yard. Once they get clearance, speed is decreased to 15, and at 0BA188.1 the EDD (Defect Detector) sounds for departures and arrivals. This location is known as North Radnor. The right track diverging from the #2 is known as A-1, it is for departure trains to Chattanooga and Atlanta. The left track which goes west from the #1 is known as A-2, and serves as a departure track to Memphis, and if the cutoff is out of service, all northbound departures. The interesting piece of Maplewood is the crossovers that are there to move trains from the Cutoff to the Main. Both lines remain double track for a while. The main runs south for 2 more miles until the Intermediate signals at 000183.0. Commonly trains will stop before Delmas Ave when Kayne Ave is at capacity and await dispatch permission before moving south. From here, the main continues south until the CR Cumberland River Swingbridge, where the main converges into a single track shortly to cross the bridge. At this point, trains had been running at track speed of around 40. From the drawbridge into town, speed is reduced to around 10. After the bridge is passed, the main returns to double track in downtown. On the #1 track about a half a mile south, another connecting track is present. This is the Wye track that connects the main with the Bruceton side, while rarely used for mainline trains, locals and river jobs use it. The location is known as 8th Avenue or 8th Avenue Wye. The main then runs down to Kayne Ave, the central hotbed of all Nashville thru traffic. The Memphis, Tennessee Ex-L&N Bruceton Subdivision meets with the Terminal. The Bruceton Sub begins at Church Street at 00N0.0. The line then runs single track until 00N0.7 \"11th Avenue\" where it turns into double track and also meets the aforementioned, Wye track. The Bruceton line then goes southwest a while to the next signals, at \"Shops\". Now speed has been increased. The line is still double track until \"Sellars\", where speed is increased to 40 and jurisdiction transferred to the SD Dispatcher. For a short time, 4 main tracks are present and an additional fifth track for switchers and yard movements. The tracks from left to right in Kayne Ave are as follows: 100, 99, 98, 12, 3. The Kayne Ave yard is also here in this area, which houses some frieght and some switcher engines. The tracks to the old shed are covered and removed. The Union Station is not an active station, but a historic hotel. Crew change usually occurs at the \"walkway\" which is under the Demombreun St bridge by the Kayne Ave Tower. This is also where the Ex-NC&StL Chattanooga Subdivision begins. Then tracks run south to Fogg St/South End where things get complicated. At milepost 000/0BA/00J187 the 98 track merges into the 12 track, making for 3 tracks now. There is a crossover from 99 to 12, also a crossover from 12 to 3. About 2/10ths of a mile down the 99 merges into the 12 track reducing the tracks back to the regular double. About 4/10ths of a mile down the line from Fogg St, 000187.4, Oak St, is a crossover track from #2 to #1 (the track names are no longer 3 and 12, but are back to regular names). When trains use this crossover northbound, such as Memphis bound trains from the A-2 line, they refer to it as \"Long Lead\". And now, the Terminal splits into two parts. The right side turns into a single track shortly, and will become the Chattanooga Subdivision, and the left side runs south to Brentwood. The right track runs single shortly until double track for a while. This begins part of the Chattanooga Sub or J-Line. The #2 meets with the A-2 connection track at 00J2.2 known as A-2. Speed is now increased to 40. Commonly northbounds will stage at 4th Ave on the #1 to await clearance. Now about a mile down the #1 meets the A-1 connection line. At 00J3.6 known as A-1. Further down the double track ends at Glencliff (00J4.9). Now it runs single for three miles until it hits Danley, which has the D Line connection track, which is an arrival track for incoming Radnor trains from the J Line. At Danley, the Terminal ends but the same dispatcher handles traffic, \"SC\". At Oak Street, our main terminal line goes south two miles to 000189.0 known as Criaghead or Vine Hill. There is a crossover here from #1 to #2 track. And there is also a connection/delivery track to the Nashville and Eastern Railroad which connects the Tennessee Central Railroad Museum to a major railroad. Trains sometimes stop on the #2 before Craighead if they are waiting to enter Radnor yard. Sometimes trains wait on the #1 at the Berry Road crossing if they await arrival to Kayne Ave. At this point, speed has been increased to 30 from 10. Moving south, the line hits Radnor Yard at 000192. The #2 track meets the E-Line arrival track which most Memphis trains and locals use. The B-Line which meets the #1 track is used for departures out of the C yard and local jobs. At Mayton, 000192.3, the B line meets the #1 track, and there is a crossover track from #2 to #1. Speed is now at 40. 2 miles south, at 000194.0, South Radnor, the next intersection is present. This is where the Radnor A yard meets the main. There is a single departure/arrival track that meets the #2 track along with a crossover from #1 to #2 track. Commonly, the #2 track south of the signals is used to halt trains. This location is known as TVA, because of the power station that is adjacent. From here the Terminal runs about 2.5 miles south until we hit the southern tip. The tracks converge onto one single main, at 000/0BA196.6 known as Brentwood. Speed is increased to 50 and jurisdiction to the S.E. dispatcher. The right track is the main, S&NA North, while the left track is the Nashville Subdivision which runs to Columbia and exchanges freight with the TSRR. The Nashville Terminal Subdivision is one of the busiest locations on the CSX network, and one of the most important.\n", "\n", "Title: Ryman Auditorium\n", "Text: Ryman Auditorium (formerly Grand Ole Opry House and Union Gospel Tabernacle) is a 2,362-seat live performance venue, located at 116 5th Avenue North, in Nashville, Tennessee and is best known as the home of the \"Grand Ole Opry\" from 1943 to 1974. It is owned and operated by Ryman Hospitality Properties, Inc.\n", "\n", "Title: The Bailey Brothers and the Happy Valley Boys\n", "Text: The Bailey Brothers and the Happy Valley Boys were an American bluegrass act widely considered to be among the first to cultivate the duo harmony vocal technique widely used in modern bluegrass music today. Charlie Bailey (February 11, 1916 in Happy Valley, Tennessee, near Rogersville – March 12, 2004 in Bear, Delaware) began his musical career in 1936. His brother, Danny Bailey (December 1, 1919, Happy Valley, Tennessee – March 22, 2004, Knoxville, Tennessee), teamed up with him in 1940, and the brothers began making frequent appearances on Tennessee radio stations in the Knoxville area. Danny formed the Happy Valley Boys after Charlie joined the military in 1941. In 1944 the Happy Valley Boys relocated to Nashville, where they became members of the Grand Ole Opry, and also made regular appearances on WSM radio in Nashville. At that time, Danny was the youngest person to ever perform on the Grand Ole Opry. When Charlie returned from his military service in 1946 the brothers were reunited as a duo but only stayed in Nashville briefly before returning to radio work in Knoxville.\n", "\n", "Title: Infinity Cat Recordings\n", "Text: Infinity Cat Recordings is an independent record label founded in 2002 and based in Nashville, Tennessee. The label has released recordings from artists including JEFF the Brotherhood, Diarrhea Planet, Be Your Own Pet, Ed Schrader's Music Beat, and Daddy Issues. In 2011, the label was highlighted by British publication The Guardian, which wrote \"forget the Grand Ole Opry; there are more thrilling new bands in East Nashville than anywhere else on earth [and] so many of their records have been released on the same label, Infinity Cat.\"\n", "\n", "Title: Bradley Gaskin\n", "Text: Bradley Gaskin (born in Gadsden, Alabama) is an American country music singer-songwriter. He signed with Columbia Nashville in 2011 and has released his debut single, \"Mr. Bartender\" after being discovered through a talent contest sponsored by John Rich. At the time, Gaskin had been working for his father hanging sheetrock. The song entered the Hot Country Songs charts at number 51 on the chart dated for the week ending April 2, 2011. He made his Grand Ole Opry debut on August 20th, 2011. After a corporate restructuring, Gaskin moved to Columbia Records to release his second single, \"Diamonds Make Babies\". On June 4, 2012, it was announced that Sony Nashville was retiring the BNA label and moving its roster to Columbia Nashville. Gaskin was dropped from the label following this move. Gaskin spent much of 2012 touring with Big & Rich, typically performing \"Mr. Bartender\" as well as a cover of Keith Whitley's \"Don't Close Your Eyes\". Gaskin had plans for releasing a version of the Keith Whitley song prior to the problems that arose with his label. Gaskin wrote a Tate Stevens \"Power of a Love Song\" in 2013. Bradley performed \"Don't Close Your Eyes\" during a Grand Ole Opry performance on October 30, 2015.\n", "\n", "Title: John England & the Western Swingers\n", "Text: John England & the Western Swingers is a six piece Nashville, Tennessee band that plays Western swing. The group has played at Nashville's Robert's Western World every Monday since July 2001. The Swingers have also performed at New York's Lincoln Center, the Grand Ole Opry, the Legends of Western Swing Festival, the Ernest Tubb Record Shop's \"Midnight Jamboree\", and has been profiled by Downbeat magazine, the Nashville Tennessean, and other print media.\n", "\n", "Title: Music City Queen\n", "Text: Music City Queen was a replica showboat formerly operating for entertainment purposes on the Cumberland River in the southern United States. It was the smaller of two stern-wheel paddle steamers based at Opry Mills in Nashville, Tennessee; the other is the \"General Jackson\".\n", "\n", "Question: What is Opry Mills in Nashville, Tennessee?\n", "\n", "Answer:\n", "Predictions: Opry Mills is a super-regional shopping mall located in Nashville, Tennessee, opened in 2000 on the site of the former Opryland USA theme park. It is owned by Simon Property Group.\n", "Solutions: super-regional shopping mall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jighansa\n", "Text: Jighansa, a Bengali thriller film, based on Sir Arthur Conan Doyle's \"The Hound of the Baskervilles\", was released in 1951. It was directed by Ajoy Kar, a famous director of Bengal. Musical scores are done by Hemanta Mukherjee.\n", "\n", "Title: Aha Naa Pellanta (2011 film)\n", "Text: Aha Naa Pellanta is a 2011 Indian Telugu language comedy film written and directed by Veerabhadram . It stars Allari Naresh, the son of famous director E. V. V. Satyanarayana and newcomer Ritu Barmecha in the lead roles. Brahmanandam plays an important role. The music is composed by Raghu Kunche. The film was released on 2 March 2011.\n", "\n", "Title: The Visit (2015 American film)\n", "Text: The Visit is a 2015 American found footage horror film written and directed by M. Night Shyamalan, and starring Olivia DeJonge, Ed Oxenbould, Deanna Dunagan, Peter McRobbie, and Kathryn Hahn.\n", "\n", "Title: Ben Oxenbould\n", "Text: Ben Oxenbould (born 2 March 1969) is an Australian actor and comedian, best known for his work in the Australian film and television industry. His brother Jamie Oxenbould is also an actor, as is Jamie's son, Ed Oxenbould.\n", "\n", "Title: Wildlife (film)\n", "Text: Wildlife is an upcoming American drama directed by Paul Dano and co-written by Dano and Zoe Kazan. It is based on the 1990 novel \"Wildlife\" by Richard Ford. The film will star Jake Gyllenhaal, Carey Mulligan, Ed Oxenbould, and Zoe Margaret Colletti, and will mark Dano's debut as a director.\n", "\n", "Title: Paper Planes (film)\n", "Text: Paper Planes is a 2015 Australian 3D children's drama film directed by Robert Connolly which he co-wrote with Steve Worland and co-produced with Liz Kearney and Maggie Miles. The film stars Sam Worthington, David Wenham, Deborah Mailman and Ed Oxenbould. The film tells a story about Dylan, a young boy who lives in Australia who finds out that he has a talent for making paper planes and dreams of competing in the World Paper Plane Championships in Japan.\n", "\n", "Title: Be silent, sorrow ... be silent\n", "Text: Be silent, sorrow ... be silent (Russian: Молчи, грусть...молчи , \"Molchi, grust... molchi \" , or English: Still, Sadness ... Still ) is a 1918 Soviet silent drama film directed by famous director Pyotr Chardynin, and starring several big Russian silent film stars of the era, including Vera Kholodnaya, Ossip Runitsch, Vitold Polonsky and Vladimir Maksimov.\n", "\n", "Title: C. V. Rajendran\n", "Text: C. V. Rajendran is an Indian film director and producer who works in the Tamil, Telugu, Malayalam, Kannada and Hindi film industry. He is the brother of famous director C. V. Sridhar.\n", "\n", "Title: Syamsul Yusof\n", "Text: Syamsul Yusof (born 21 May 1984) is a Malaysian actor, film director, scriptwriter, film producer, rapper and singer. He is the son of famous director Yusof Haslam. He set the record as the youngest director to win the Malaysian Film Festival, doing so at the age of 26.\n", "\n", "Title: Ed Oxenbould\n", "Text: Ed Oxenbould (born 1 June 2001) is an Australian actor. In 2014 he acted as the title character in \"Alexander and the Terrible, Horrible, No Good, Very Bad Day\", Dylan in \"Paper Planes\", and as Tyler in the film \"The Visit\".\n", "\n", "Question: Ed Oxenbould plays Tyler in a film directed by which famous director?\n", "\n", "Answer:\n", "Predictions: M. Night Shyamalan\n", "Solutions: M. Night Shyamalan\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: 2002 FIFA World Cup\n", "Text: The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup which took place from 31 May to 30 June 2002 in South Korea and Japan. It was the first World Cup to be held in Asia, the first to be held on a continent other than Europe or the Americas, the last World Cup during which the golden goal rule was in force and the only World Cup to be jointly hosted by more than one nation. Brazil won the tournament for a record fifth time, winning the final against Germany 2–0. The victory meant Brazil qualified for the 2005 FIFA Confederations Cup for the fifth time, representing the World. In the third place play-off match against South Korea, Turkey won 3–2 taking third place in only their second ever FIFA World Cup finals. China PR, Ecuador, Senegal and Slovenia made their first appearances at the finals with Turkey making its first appearance since 1954. Republic of Ireland, Russia and Sweden returned after missing the 1998 tournament.\n", "\n", "Title: Kenya at the Cricket World Cup\n", "Text: The Kenya national cricket team is the team that represents the country of Kenya in international cricket matches. Kenya was part of the East Africa cricket team which became an associate member of the ICC in 1966, and competed in the first World Cup. Kenya first competed as an independent nation at the 1996 Cricket World Cup, after which they were given full ODI status, which they held until 2014, when they finished fifth in the 2014 Cricket World Cup Qualifier. Kenya's best performance at the Cricket World Cup was in 2003, where they reached the semi-finals.\n", "\n", "Title: Aung Thu (footballer)\n", "Text: Aung Thu (Burmese: အောင်သူ ; born 22 May 1996) is a footballer from Myanmar, and a striker for the Myanmar U-19 national football team and Yadanarbon FC. He was born in Pyinmana, Mandalay. In 2009, he joined the Myanmar Football Academy in Mandalay. He had played for U-16 and has begun playing for the Myanmar national football team. Aung Thu first appeared in national under 16 team that took part in 2011 AFF U-16 Youth Championship. He scored a goal against Qatar in 2014 AFC U-19 Championship in Myanmar which the team eventually lost in the extra time. He is fond of Messi. His performance helped the U-19 Myanmar National Team advance to the FIFA U-20 World Cup for the first time in Myanmar football history. This was the first time that a Myanmar football team taking part in a world level tournament after Myanmar had qualified for the football tournament in the 1972 Summer Olympics in Munich, Germany. He also won the most valuable player award of the year in early 2015 January. He scored a leading goal for Myanmar against New Zealand in the 2015 FIFA U-20 World Cup. He scored his first international goal for Myanmar National Football team against Laos 3-1 in 2018 World Cup qualification(AFC).\n", "\n", "Title: World Cup 98 (video game)\n", "Text: World Cup 98 (known in Europe as FIFA World Cup 98) is the first official FIFA World Cup game developed by EA Sports after obtaining the rights from FIFA in 1997. Unlike the previous World Cup games, which were in 2D and showed a bird's-eye view, \"World Cup 98\" was the first in the franchise to use a 3D engine, utilising DirectX for the PC version. Accurate national team kits (except for the goalkeepers who were issued a generic kit) were introduced complete with kit manufacturer logos and official merchandise. The game engine is based on that of \"\", though it features some minor gameplay improvements to areas such as ingame strategy changing and player positioning. The playable teams in the friendly mode also included several nations that did not qualify for the finals. \"World Cup 98\" was released for Microsoft Windows, PlayStation, Nintendo 64 and Game Boy.\n", "\n", "Title: Tunisia national football team\n", "Text: The Tunisia national football team (Arabic: منتخب تونس لكرة القدم‎ ‎ ), nicknamed \"Les Aigles de Carthage (The Eagles of Carthage or The Carthage Eagles)\", is the national team of Tunisia and is controlled by the Tunisian Football Federation. They have qualified for four FIFA World Cups, the first one in 1978, but have yet to make it out of the first round. Nevertheless, they created history in that 1978 tournament in Argentina by becoming the first African side to win a World Cup match, beating Mexico 3–1. They also held defending champions West Germany to a goalless draw before bowing out. They have since qualified for the three tournaments in succession, in 1998, 2002 and 2006: they were the only African team to appear at both the 2002 and 2006 tournaments.\n", "\n", "Title: Markus Vogel\n", "Text: Markus Vogel (born January 12, 1984) is a World Cup alpine ski racer from the Canton of Nidwalden in Switzerland, who specializes in the Slalom discipline. He made his World Cup debut in January 2008 in his home race at Adelboden where he skied out of the first run. A week later in the slalom in Wengen, Vogel managed to qualify for the second run in 29th place from a start number of 62 but was unable to finish the second run. He did not finish the first run of his other four races in 2008. In fact it was over a year until Vogel picked up his first World Cup points with a 19th-place finish in Kitzbühel. The 2010 season was another disappointing one, with Vogel spending most of his time in FIS Races and European Cup level. After this period, Vogel came back strongly at the end of the next season and earned himself a place in the Swiss World Championship team in 2011. In 2012, he was Switzerland's top slalom skier with the injury to Marc Gini. Vogel was also selected to the World Championship team in 2013, where he finished 17th in the Slalom.\n", "\n", "Title: Sadok Sassi\n", "Text: Sadok Sassi (Arabic: الصادق ساسي‎ ‎ ), nicknamed \"Attouga\" (born 15 November 1945 in Tunis) is a former Tunisian footballer. He was a goalkeeper and played for Club Africain and the Tunisian national team.\n", "\n", "Title: Rugby League World Cup\n", "Text: The Rugby League World Cup is an international rugby league tournament, contested by national teams of the Rugby League International Federation, which was first held in France in 1954, the first World Cup in either rugby code. The idea of a rugby league world cup tournament was first mooted in the 1930s with the French proposing holding a tournament in 1931, and again in 1951. The fourteen tournaments held to date have been at intervals ranging from two to eight years, and have featured a number of different formats. So far three nations have won the competition (Australia ten times, Great Britain three times and New Zealand once). Australia, France and New Zealand are the only teams to have played in all tournaments (Great Britain has been split into England, Wales, Scotland and Ireland since 1995, while England and Wales had previously competed as separate teams in the 1975 World Cup). Since 2000, the RLIF has also organised World Cups for women, students and other categories. The 2013 Rugby League World Cup was held in England and Wales and won by Australia.\n", "\n", "Title: Australia at the Cricket World Cup\n", "Text: The Australian cricket team is the most successful team in the Cricket World Cup winning the 1987, 1999, 2003, 2007 and 2015 editions. This also makes them the only team to have won the world cup in all the regions (group of countries) that have hosted the world cup till now. Besides, Australia had reached the finals of the 1975 and 1996 World cups losing to West Indies and Sri Lanka respectively. They also reached quarterfinals of 2011 Cricket World Cup, and were knocked out in first round three times : 1979, 1983 and 1992. Though they have won world cup record five times, they are also the only team considered as tournament favorites for every world cup, right from 1975 to present. The team has played total 85 world cup matches, the highest of any team. Its overall win-loss record is 61-21 (which gives it the highest win percentage among all teams playing the world cup), with one tied match and two being abandoned due to rain.\n", "\n", "Title: Olle Nordin\n", "Text: Olle Nordin (born 23 November 1949 in Delary, Småland) is a Swedish football coach and former player. He was capped 19 times for the national team and played at the 1978 FIFA World Cup, but he is best remembered for his coaching merits. As national team coach, he led Sweden to the 1990 FIFA World Cup — its first World Cup since Nordin participated as a player. The tournament was a failure, however, as Sweden lost all three matches with 1-2. Nordin was fired shortly thereafter. He managed Norwegian clubs (Vålerenga, Lyn) as well as Swedish Västra Frölunda IF, IFK Norrköping and AIK.\n", "\n", "Question: Sadok Sassi played for a national team that made its first World Cup in what year?\n", "\n", "Answer:\n", "Predictions: 1978\n", "Solutions: 1978\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Otterington railway station\n", "Text: Otterington railway station was located in the village of South Otterington, North Yorkshire, on the East Coast Main Line. It opened in 1841 and closed in 1958. The station is now a private residence, though the platform can still be seen. The buildings date from the 1930s when the East Coast Main Line was widened.\n", "\n", "Title: Ochira railway station\n", "Text: Ochira railway station (Code:OCR) is an 'E-Class' railway station, situated near the city of Kollam in Kollam district of Kerala. Ochira railway station is situated at the borders of Kollam district. It falls under the Thiruvananthapuram railway division of the Southern Railway Zone, Indian Railways. The railway station is situated between Karunagappalli and Kayamkulam. The nearest important major rail head is Kollam Junction railway station. The other major railway stations near oachira are Kayamkulam Junction railway station and Karunagappalli railway station.\n", "\n", "Title: Habra railway station\n", "Text: Habra railway station is a station of Eastern Railway. It is 45 km away from Sealdah railway station and 23 km from Barasat on the Sealdah-Bangaon branch line of Eastern Railway. It is part of the Kolkata Suburban Railway system. Habra, Gobordanga,Thakurnagar and Bangaon local connects this city to Sealdah Station and other stations of the Sealdah-Bangaon branch line. Habra Station Road is directly connected on NH 35 (Jessore Road). It is a major railway station between bangaon and barasat railway station\n", "\n", "Title: Edinburgh Waverley railway station\n", "Text: Edinburgh Waverley railway station (also known simply as Edinburgh or as Waverley) is the principal station serving Edinburgh, the capital city of Scotland. It is the northern terminus of the East Coast Main Line, 393 mi from , although some trains operated by Virgin Trains East Coast continue to other Scottish destinations beyond Edinburgh.\n", "\n", "Title: East Coast Main Line\n", "Text: The East Coast Main Line (ECML) is a 393 mi major railway link between London and Edinburgh via Peterborough, Doncaster, Wakefield, Leeds, York, Darlington and Newcastle, electrified along the whole route. Services north of Edinburgh to Aberdeen and Inverness use diesel trains. The main franchise on the line is operated by Virgin Trains East Coast.\n", "\n", "Title: Shapingba Railway Station\n", "Text: The Shapingba Railway Station is a railway station of Chengyu Passenger Railway that is located in Shapingba District of Chongqing, People's Republic of China. Currently it is closed. After having been demolished, construction started in 2013 to rebuild it as an underground train station. According to current plans the underground complex will be opened in 2015 and also include stations for two subway lines. It will be part of the Chengdu-Chongqing Intercity Railway due to open in 2015, allowing for journeys to Chengdu in around an hours travel time. Once completed it was anticipated that the name would change to Chongqing West Railway Station but this has now been given to a new fourth major railway station for Chongqing in nearby Shangqiao area of Shapingba District.\n", "\n", "Title: Jiayuguan South Railway Station\n", "Text: Jiayuguan South Railway Station () is a railway station located in China's Gansu Province, Jiayuguan City. It was put into operation on December 26, 2014. It serves the Lanzhou–Xinjiang High-Speed Railway with High Speed services between Lanzhou and Urumqi and conventional services connecting Urumqi to various cities in Eastern and South Western China. It is the second major railway station serving Jiayuguan, with Jiayuguan Railway Station, which serves the conventional LanXin Railway.\n", "\n", "Title: Krishna railway station\n", "Text: Krishna Railway Station is located in Telangana, Mahbubnagar, Maganoor. It belongs to South Central Railway zone, Guntakal railway division of Indian Railways. Neighbourhood stations are Chegunta, Saidapur, Yadlapur. Nearby major railway station is Secunderabad Junction another nearby major railway station is Raichur and airport is Rajiv Gandhi International Airport. A total of 16 express trains stop at this station. It is an important station for people in rural areas of neighbouring small villages such as Chegunta, Yadlapur. A lot of native Telugu people of this area are migrated to neighbouring Maharashtra they visit their native villages occasionally.\n", "\n", "Title: Praha-Smíchov railway station\n", "Text: Praha-Smíchov railway station (Czech: \"Nádraží Praha-Smíchov\" , ] ) is a major railway station in Prague, Czech Republic, located in Smíchov, in the south-west of the city. It serves as a major railway station on the Czech national rail network, and is connected to the rest of Prague by its metro station of the same name and numerous tram routes which stop on Nádražní street outside the station. It is also a major bus terminus for lines going to the south and southwest of Prague and beyond. In 2009 the station served almost 4 million people.\n", "\n", "Title: Varkala Sivagiri railway station\n", "Text: Varkala railway station also known as \"Varkala Sivagiri railway station\", station code VAK, is a major railway station serving the district of Thiruvananthapuram of Kerala. It is situated in the municipality of Varkala in Thiruvananthapuram district. It falls in the Thiruvananthapuram railway division of the Southern Railway zone of the Indian Railways. It is on Kollam-Thiruvananthapuram railway line and is an important railway station in Thiruvananthapuram district, after the Thiruvananthapuram Central station. In close proximity to the station is Varkala Bus Station.\n", "\n", "Question: Otterington railway station was on a 393 mi major railway that linked Edinburgh to what city?\n", "\n", "Answer:\n", "Predictions: London\n", "Solutions: London\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: St Pierre, Monmouthshire\n", "Text: St Pierre is a former parish and hamlet in Monmouthshire, south east Wales, 3 mi south west of Chepstow and adjacent to the Severn estuary. It is now the site of a large golf and country club, the Marriott St Pierre Hotel & Country Club, which was previously a large manor house and deer park belonging to the Lewis family.\n", "\n", "Title: Damage Control (TV series)\n", "Text: Damage Control is a reality TV series produced by MTV. Hosted by lead vocalist of Canadian music group Simple Plan Pierre Bouvier, and directed by Sebastian Doggart, the show was a real-life version of the movie \"Risky Business.\" It first aired on MTV on March 6, 2005. The last episode was broadcast on April 24, 2005.\n", "\n", "Title: Coldplay\n", "Text: Coldplay are a British rock band formed in 1996 by lead vocalist and keyboardist Chris Martin and lead guitarist Jonny Buckland at University College London (UCL). After they formed under the name Pectoralz, Guy Berryman joined the group as bassist and they changed their name to Starfish. Will Champion joined as drummer and backing vocalist, completing the lineup. Creative director Phil Harvey is often referred to as the fifth member by the band. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs: \"Safety\" in 1998 and \"Brothers & Sisters\" and \"The Blue Room\" in 1999. \"The Blue Room\" was their first release on a major label, after signing to Parlophone.\n", "\n", "Title: I'm Just a Kid\n", "Text: \"I'm Just a Kid\" is the debut single by the band Simple Plan, written by Pierre Bouvier. It appeared on their debut album \"No Pads, No Helmets... Just Balls\". It was featured in the films \"Grind\", \"The New Guy\", and \"Cheaper by the Dozen\".\n", "\n", "Title: Pierre Belleque\n", "Text: Pierre Belleque or Pierre Billique (1793–1849) was a French Canadian fur trader in the British-claimed Columbia District, which was also known as the Oregon Country and also claimed by the United States. He settled on the French Prairie in what is now the state of Oregon where in 1843 he participated in the Champoeg Meetings. Pierre was elected one of three Constables. He voted affirmative for the measure to form a provisional government at the May 2, 1843 meeting. That measure passed and led to the creation of the Provisional Government of Oregon.\n", "\n", "Title: Pierre Bouvier\n", "Text: Pierre Charles Bouvier {'1': \", '2': \", '3': \", '4': \"} (born 9 May 1979) is a Canadian singer, songwriter, musician, composer and actor who is best known as the lead singer and guitarist of the rock band Simple Plan.\n", "\n", "Title: Pierre Lorillard III\n", "Text: Pierre Lorillard III (October 20, 1796 – December 23, 1867) was the grandson of Pierre Abraham Lorillard, the founder of the P. Lorillard and Company. Pierre also developed Tuxedo Park, New York, one of the nation's early country clubs.\n", "\n", "Title: History (Story Untold song)\n", "Text: \"History\" is the first single from Canadian band Story Untold. The members of Story Untold are from Quebec, Canada, which is also home to Simple Plan. Simple Plan has known the five-piece for a while, and the French Canadians teamed up to write Story Untold's newest single \"History\". The song is about how the band is going to make it big, even if it seems like a crazy idea: \"You can call me crazy/But when I close my eyes/I can see it clearly/I can see the shining lights.\" The song was co-penned with Simple Plan's vocalist Pierre Bouvier and drummer Chuck Comeau. The song is just one of seven songs on the band's self-titled EP. History also has a music video where the band is a part of an underground fight club. It features each boy taking on a different fighter, and it subtly introduces each band member for those who have never heard of Story Untold before. An acoustic version of the song does appear on YouTube but is not featured on the Story Untold EP.\n", "\n", "Title: Chuck Comeau\n", "Text: Charles-André \"Chuck\" Comeau {'1': \", '2': \", '3': \", '4': \"} (born 17 September 1979) is a Canadian musician and drummer, best known for being the drummer of the rock band Simple Plan. He also founded the apparel company Role Model Clothing along with his bandmate Pierre Bouvier and the band's best friend, Patrick Langlois. He is also former drummer for the punk rock band Reset from 1993 to 1999, which he quit to form Simple Plan with his Reset bandmate who also left Reset, Pierre Bouvier.\n", "\n", "Title: Billy Boyle\n", "Text: Billy Boyle is an Irish actor on British film, television and stage. He is a veteran of the West End stage having played leading roles in over 15 hit shows. In his first West End musical \"Maggie May\" he was nominated as best newcomer. Gower Champion then chose him to play Barnaby in \"Hello Dolly\" at The Theatre Royal Drury Lane. He appeared in \"Canterbury Tales\" at the Phoenix Theatre as The Clerk of Oxford. Harold Hobson, The Times critic said, \"He was a breath of fresh air in the West-End\". He then went on to play leading roles in \"No Sex Please, We're British\", \"Billy\", \"What's a Nice Country\", \"The Rivals\", \"Love, Lust, & Marriage\", \"Some Like it Hot\", Disney's \"Beauty and the Beast\", and in the original cast of \"Dirty Dancing. Lately he has appeared as Grandpa George\" and Grandpa Joe in Charlie and The Chocolate Factory at Drury Lane. In 2016 he was Major Bouvier and Norman Vincent Peale in the smash hit Grey Gardens. He followed this playing Arvide in Guys and Dolls at the Phoenix Theatre in the West End.He has had his own very successful television series in Ireland \"It's Billy Boyle\" as well as leading roles in \"Trail of Guilt\", the award-winning \"The Grass Arena\", \"The Bretts\", as well as many guest appearances in EastEnders, The Professionals, Coronation Street, Father Ted etc. In the late 1970s, Boyle was cast as 'Ronald McDonald' in the European TV commercials and in all print media for the fast food chain McDonald's. He was the last 'straight man' to Basil Brush on BBC1's \"The Basil Brush Show\" and later presented a programme, Dance Crazy for ITV, on the history of dance with Lesley Judd. Lately he has been seen in Dirk Gently, for BBC Four and Lead Balloon. His many films include Stanley Kubrick's \"Barry Lyndon\", \"Groupie Girl\", \"Side by Side\", \"Shergar\", \"Wild Geese II\", \"The Scarlet and the Black\", \"Round Ireland with a Fridge\" and A United Kingdom.\n", "\n", "Question: Are both Coldplay and Pierre Bouvier from the same country?\n", "\n", "Answer:\n", "Predictions: No, Coldplay and Pierre Bouvier are not from the same country.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Shakespeare's plays\n", "Text: The plays written by English poet, playwright, and actor William Shakespeare (1564 – 1616) have the reputation of being among the greatest in the English language and in Western literature. Traditionally, the plays are divided into the genres of tragedy, history, and comedy; they have been translated into every major living language, in addition to being continually performed all around the world.\n", "\n", "Title: Shakespeare's reputation\n", "Text: In his own time, William Shakespeare (1564–1616) was rated as merely one among many talented playwrights and poets, but since the late 17th century he has been considered the supreme playwright and poet of the English language.\n", "\n", "Title: Shakespeare (surname)\n", "Text: Shakespeare is an English family name most commonly associated with William Shakespeare (1564–1616), an English playwright and poet. Other notable people with the surname include:\n", "\n", "Title: Shakespeare bibliography\n", "Text: William Shakespeare (1564–1616) was an English poet and playwright. He wrote approximately 38 plays and 154 sonnets, as well as a variety of other poems.\n", "\n", "Title: Timeline of Shakespeare criticism\n", "Text: Timeline of Shakespeare criticism is an informal term that presents a chronological collection of critical quotations about William Shakespeare and his works, which illustrate the article Shakespeare's reputation.\n", "\n", "Title: Pieter Brueghel the Younger\n", "Text: Pieter Brueghel the Younger or Pieter Bruegel the Younger (before 1616 he signed his name as 'Brueghel' and after 1616 as 'Breughel') (] ; between 23 May and 10 October 1564 – between March and May 1638) was a Flemish painter, known for numerous copies after his father Pieter Bruegel the Elder's work as well as his original compositions. The large output of his studio, which produced for the local and export market, contributed to the international spread of his father's imagery.\n", "\n", "Title: Shakespeare (disambiguation)\n", "Text: William Shakespeare (1564–1616) was an English playwright and poet.\n", "\n", "Title: Shakespeare's life\n", "Text: William Shakespeare was an actor, playwright, poet, and theatre entrepreneur in London during the late Elizabethan and early Jacobean eras. He was baptised on 26 April 1564 in Stratford-upon-Avon in Warwickshire, England, in the Holy Trinity Church. At age 18 he married Anne Hathaway with whom he had three children. He died in his home town of Stratford on 23 April 1616 at the age of 52. Though more is known about Shakespeare's life than those of most other Elizabethan and Jacobean writers, few personal biographical facts survive about him, which is unsurprising in the light of his social status as a commoner, the low esteem in which his profession was held, and the general lack of interest of the time in the personal lives of writers. Information about his life derives from public instead of private documents: vital records, real estate and tax records, lawsuits, records of payments, and references to Shakespeare and his works in printed and hand-written texts. Nevertheless, hundreds of biographies have been written and more continue to be, most of which rely on inferences and the historical context of the 70 or so hard facts recorded about Shakespeare the man, a technique that sometimes leads to embellishment or unwarranted interpretation of the documented record.\n", "\n", "Title: Holy Sonnets\n", "Text: The Holy Sonnets—also known as the Divine Meditations or Divine Sonnets—are a series of nineteen poems by the English poet John Donne (1572–1631). The sonnets were first published in 1633—two years after Donne's death. The poems are sonnets and are predominantly in the style and form prescribed by Renaissance Italian poet Petrarch (or Francesco Petrarca) (1304–1374) in which the sonnet consisted of two quatrains (four-line stanzas) and a sestet (a six-line stanza). However, several rhythmic and structural patterns as well as the inclusion of couplets are elements influenced by the sonnet form developed by English poet and playwright William Shakespeare (1564–1616).\n", "\n", "Title: William Shakespeare\n", "Text: William Shakespeare ( ; 26 April 1564 (baptised) – 23 April 1616) was an English poet, playwright, and actor, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet, and the \"Bard of Avon\". His extant works, including collaborations, consist of approximately 38 plays, 154 sonnets, two long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n", "\n", "Question: This term about a playwright who lived from 1564-1616 presented what about his works? \n", "\n", "Answer:\n", "Predictions: William Shakespeare's works are regarded as some of the greatest in the English language, consisting of approximately 38 plays and 154 sonnets. His plays have been translated into every major living language and are performed more frequently than those of any other playwright, showcasing their enduring impact and significance in literature and theatre.\n", "Solutions: chronological collection of critical quotations\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Amelia Cary, Viscountess Falkland\n", "Text: Amelia Cary, Viscountess Falkland (21 March 1807 – 2 July 1858) was a British noblewoman. Born the fifth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan. Amelia had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess. A granddaughter of George III, Amelia was named after her aunt Princess Amelia.\n", "\n", "Title: John Crichton-Stuart, 5th Marquess of Bute\n", "Text: John Crichton-Stuart, 5th Marquess of Bute (4 August 1907 – 14 August 1956) was the son of John Crichton-Stuart, 4th Marquess of Bute and Augusta Bellingham. On his father's side, the 5th Marquess was a direct male-line descendant of Robert II of Scotland through John Stewart, his illegitimate son by Moira Leitch. On his mother's side, the 5th Marquess was a descendant of William IV of the United Kingdom through Elizabeth Hay, Countess of Erroll, one of his illegitimate daughters by his mistress, Dorothea Jordan. As such, the 5th Marquess was the first member of the Bute family to be descended from William IV.\n", "\n", "Title: Dorothea Jordan\n", "Text: Dorothea Jordan (22 November 17615 July 1816) was an Anglo-Irish actress, courtesan, and the mistress and companion of the future King William IV of the United Kingdom, for 20 years while he was Duke of Clarence. Together they had ten illegitimate children, all of whom took the surname \"FitzClarence\".\n", "\n", "Title: Lady Mary Fox\n", "Text: Lady Mary Fox (née FitzClarence; 19 December 1798 – 13 July 1864) was an illegitimate daughter of King William IV of the United Kingdom by his mistress Dorothea Jordan. In later life she became a writer.\n", "\n", "Title: Elizabeth Hay, Countess of Erroll\n", "Text: Elizabeth Hay, Countess of Erroll (17 January 1801 – 16 January 1856; born Elizabeth FitzClarence) was an illegitimate daughter of King William IV of the United Kingdom and Dorothea Jordan. She married William Hay, 18th Earl of Erroll, and became Countess of Erroll on 4 December 1820 at age 19. Due to Hay's parentage, William Hay became Lord Steward of the Household. Elizabeth and William Hay married at St George's, Hanover Square. Hay is pictured in a FitzClarence family portrait in House of Dun and kept a stone thrown at her father William IV and the gloves he wore on opening his first Parliament as mementos. She died in Edinburgh, Scotland.\n", "\n", "Title: Lord Frederick FitzClarence\n", "Text: Lieutenant-General Lord Frederick FitzClarence, GCH (9 December 1799 – 30 October 1854) was a British Army officer as well as being the illegitimate third son of King William IV and his mistress, Dorothea Jordan.\n", "\n", "Title: Lady Augusta Gordon\n", "Text: Lady Augusta Gordon (\"née\" FitzClarence; 17 November 1803 – 8 December 1865) was a British noblewoman. Born the fourth illegitimate daughter of William IV of the United Kingdom (then Duke of Clarence) by his long-time mistress Dorothea Jordan, she grew up at their Bushy House residence in Teddington. Augusta had four sisters and five brothers all surnamed FitzClarence. Soon after their father became monarch, the FitzClarence children were raised to the ranks of younger children of a marquess.\n", "\n", "Title: Sophia Sidney, Baroness De L'Isle and Dudley\n", "Text: Sophia Sidney, Baroness De L'Isle and Dudley (\"née\" FitzClarence; 4 March 1795 – 10 April 1837) was the eldest illegitimate daughter of William IV of the United Kingdom and his longtime mistress Dorothea Jordan. She was married to Philip Sidney, 1st Baron De L'Isle and Dudley, and had four surviving children. Shortly before her death in 1837, she served as State Housekeeper in Kensington Palace.\n", "\n", "Title: Regency Act 1830\n", "Text: The Regency Act 1830 (1 Will.4 c.2) was an Act of the Parliament of the United Kingdom passed to cater for the event that King William IV died while the next person in line to the throne was not yet aged 18. It provided for a regency until the new monarch reached the age of 18, and also would have enabled a posthumous child of King William IV to replace Queen Victoria on the throne. However, the Act never came into force, because William was not survived by a legitimate child and Victoria became queen at the age of 18 in 1837.\n", "\n", "Title: Wilhelmina FitzClarence, Countess of Munster\n", "Text: Wilhelmina FitzClarence, Countess of Munster (\"née\" Kennedy-Erskine; 27 June 1830 – 9 October 1906) was a British peeress and novelist. Her mother, Lady Augusta FitzClarence, was an illegitimate daughter of William IV of the United Kingdom; Wilhelmina, also known as Mina, was born the day after William's succession as monarch. She travelled as a young girl throughout Europe, visiting the courts of France and Hanover. In 1855, Mina married her first cousin William FitzClarence, 2nd Earl of Munster; they would have nine children, including the 3rd and 4th Earls of Munster.\n", "\n", "Question: What is the birthday of this Anglo-Irish actress, courtean, and mistress, who was the mother to the illegitimate daughter of King William IV?\n", "\n", "Answer:\n", "Predictions: 22 November 1761\n", "Solutions: 22 November\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Jim Lentz\n", "Text: Jim Lentz is the chief executive officer for Toyota North America; president and chief operating officer of Toyota Motor North America, Inc. (TMA); and a senior managing officer of the parent company Toyota Motor Corporation (TMC) which is located in Japan. In that role Lentz manages all of Toyota’s North American affiliate companies which include TMA, Toyota Motor Sales, U.S.A., Inc. (TMS), and Toyota Motor Engineering & Manufacturing, North America, Inc. (TEMA), which includes responsibilities for Toyota Motor Manufacturing Canada Inc. (TMMC), and oversight for Toyota Canada, Inc. (TCI). Lentz also serves as the chairman of the North American Executive Committee. This is composed of the top leaders from the affiliate companies. Most recently Lentz was the president and chief executive officer of TMS and senior vice president of TMA and served in a global advisory capacity as the managing officer for TMC. Before that he served as president and chief operating officer and executive vice president of TMS. Lentz previously held several executive positions including Toyota division group vice president and general manager where he oversaw all sales, logistics and marketing activities for Toyota and Scion regional sales offices and distributors. He also served as the group vice president of marketing for the Toyota division and vice president of Scion, and was responsible for the initial launch of a new line of vehicles. Lentz spent several years in the field as vice president and general manager of the Los Angeles region and before that general manager of the San Francisco region. Prior to his role as general manager Lentz was vice president of marketing services for CAT in Maryland. He has also held several other TMS positions, including field training manager, sales administration manager and truck sales team member. Lentz joined Toyota in 1982 as the merchandising manager for its Portland, Oregon region where he later became the distribution manager and field operations manager. He serves as chairman on the board of directors of The Global Automakers and is also a member of the executive advisory board for Daniels College of Business at the University of Denver (DU), his alma mater. He was named “Marketer of the Year” by Advertising Age in 2006, an Automotive News “All Star” in 2007 and honored at Industry Leader of the year.\n", "\n", "Title: Michael J. Lotz\n", "Text: Michael J. Lotz is President and Chief Operating Officer of Mesa Air Group, joining the Company in July 1998. In January 1999, Mr. Lotz became Chief Operating Officer. In August 1999, Mr. Lotz became the Company’s Chief Financial Officer and in January 2000 returned to the position of Chief Operating Officer. On June 22, 2000, Mr. Lotz was appointed President of the Company. Prior to joining the Company, Mr. Lotz served as Chief Operating Officer of Virgin Express, a position he held from October 1996 to June 1998. Previously, Mr. Lotz was employed by Continental Airlines, most recently as Vice President of Airport Operations, Properties and Facilities at Continental Express. .\n", "\n", "Title: Carole Post\n", "Text: Carole Post is the Deputy Chief Operating Officer of USF Health at the University of South Florida. She was formerly the Executive Vice President at New York Law School and serves as the school's Chief Operating Officer and first Chief Strategy Officer. Before her tenure at New York Law School, she served as the Commissioner of the New York City Department of Information Technology and Telecommunications (DoITT) and New York City's Chief Information Officer (CIO). She was appointed by Mayor Michael R. Bloomberg on December 30, 2009 and assumed the official position on January 19, 2010. She is the first woman to have held this office at the City of New York. Post modernized New York City government practices and infrastructure to advance open government and improve services to the public.\n", "\n", "Title: Glen Post\n", "Text: Glen F. Post III (born October 4, 1952) is the chief executive officer and president of CenturyLink, an S&P 500 integrated communications service provider based out of Monroe, Louisiana. He earned a bachelor's degree in accounting in 1974 at Louisiana Tech University and an MBA in 1976 at Louisiana Tech. Post joined CenturyTel in 1976. He was named vice president in 1982 and was promoted to senior vice president and treasurer in 1984. He was appointed to the CenturyTel board of directors in 1985, and the following year he was promoted to senior vice president and chief financial officer. In 1988 Post was named executive vice president and chief operating officer. He became the president and chief operating officer of CenturyTel in 1990. In 1992 Post was named vice chairman of the board, president, and chief executive officer. In 2002 he was appointed chairman of the board and chief executive officer. Since 2009 Post has served as chief executive officer and president of CenturyLink. His honors include: Louisiana Tech College of Administration and Business Distinguished Alumni in 1991, Louisiana Tech University Tower Medallion Award in 1997 and DeGree Enterprises Lifetime Achievement Award in Business 2003.\n", "\n", "Title: Flydubai\n", "Text: flydubai (Arabic: فلاي دبي‎ ‎ ), legally Dubai Aviation Corporation (Arabic: مؤسسة دبي للطيران‎ ‎ ), is a government-owned low-cost airline with its head office and flight operations in Terminal 2 of Dubai International Airport. The airline operates between a total of 95 destinations, serving the Middle East, Africa, Asia and Europe from Dubai.\n", "\n", "Title: Kenneth L. Gile\n", "Text: Kenneth \"Ken\" Gile (born 1947) is the Chief Operating Officer of Flydubai, the low-cost carrier owned by the Dubai government. Prior to joining Flydubai, Ken was the President and COO of now defunct Skybus Airlines and a former pilot and Director of Operations for Southwest Airlines. Ken was also a pilot in the US Air Force, as well as for Saudi Arabian Airlines prior to his career with Southwest.\n", "\n", "Title: President (corporate title)\n", "Text: The President is a leader of an organization, company, community, club, trade union, university or other group. In many organizations, it is the legally recognized highest \"titled\" corporate officer, ranking above the various Vice Presidents (e.g. Senior Vice President and Executive Vice President). The president may also be the chairperson. The relationship between the president and the Chief Executive Officer varies, depending on the structure of the specific organization. In a similar vein to the Chief Operating Officer, the title of corporate President as a separate position (as opposed to being combined with a \"C-Suite\" designation, such as \"President and Chief Executive Officer\" or \"President and Chief Operating Officer\") is also loosely defined. The powers of the president vary widely across organizations and such powers come from specific authorization in the bylaws (e.g. the president can make an \"executive decision\" only if the bylaws allow for it).\n", "\n", "Title: David O'Sullivan (civil servant)\n", "Text: David O'Sullivan (born 1953) is an Irish civil servant who serves as the Ambassador of the European Union to the United States and the Head of the Delegation of the European Union to the United States. Prior to his post in the United States, he was the chief operating officer of the European Union's diplomatic corps, the European External Action Service (EEAS). He has held a number of high level positions including Head of Cabinet to Romano Prodi and Secretary-General of the European Commission between June 2000 and November 2005. In 2010 he was appointed as Director General for Relex with the responsibility of setting up the EEAS and was appointed the Chief Operating Officer on 1 January 2011.\n", "\n", "Title: Ronald Logue\n", "Text: Ronald (Ron) E. Logue is the former Chairman of the Board of State Street Corporation (), formerly Chief Executive Officer as Jay Hooley assumed that title March 1, 2010 in addition to his role as President. Logue was appointed Chairman and Chief Executive Officer in 2004. Prior to that he held a number of leadership positions at State Street. Logue joined the company in 1990 as Senior Vice President and head of the investment servicing for US mutual funds. He was named Chief Operating Officer in 2000 and President in 2001. As President and Chief Operating Officer, Logue was responsible for overseeing State Street's investment servicing, securities and investment research and trading activities, as well as information technology. During his presidency, he led the highly successful integration of the Deutsche Bank's Global Securities Services business, acquired in January 2003.\n", "\n", "Title: Hlaudi Motsoeneng\n", "Text: Hlaudi Motsoeneng served as the acting Chief operating officer of the South African Broadcasting Corporation (SABC) from 2011 to 2013. Motsoeneng was removed from his position as Chief operating officer after it had been found that he lied about his qualifications. After being removed as acting Chief operating officer it was announced that Motsoeneng would move back to his previous position as Group Executive Editor of Provinces and Corporate Affairs of the SABC. In December 2016, the Western Cape High Court ruled that Motsoeneng’s appointment as Group Executive was illegal and that he was “not entitled to occupy any position at the SABC”.\n", "\n", "Question: Kenneth L. Gile is the Chief Operating Officer of an airline with its head office in what airport?\n", "\n", "Answer:\n", "Predictions: Dubai International Airport\n", "Solutions: Dubai International Airport\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Hyundai Motor Group\n", "Text: The Hyundai Motor Group (] ; Hangul: 현대자동차그룹 \"Hyeondae Jadongcha Geurup\" ; Hanja: 現代自動車그룹 \"Hyeondae Jadong-cha Geurup\" ) (stylized as HYUNDAI) is a South Korean multinational conglomerate headquartered in Seoul, South Korea. It is the largest vehicle manufacturer in South Korea and as of 2015 the world's fourth largest vehicle manufacturer behind Japanese Toyota, German Volkswagen Group and American General Motors. The group was formed through the purchase of 51% of South Korea's second-largest car company, Kia Motors, by Hyundai Motor Company in 1998. As of December 31, 2013, Hyundai owns 33.88% of Kia Motors.\n", "\n", "Title: Bisquick\n", "Text: Bisquick is a pre-mixed baking mix sold by General Mills under its Betty Crocker brand, consisting of flour, shortening, salt, and baking powder (a leavening agent).\n", "\n", "Title: Yue Yuen Industrial Holdings\n", "Text: Yue Yuen Industrial Holdings Limited is a Taiwanese footwear manufacturer headquartered in Hong Kong and established by its Taiwanese parent company, Pou Chen Group. It is the largest branded athletic and casual footwear manufacturer in the world. It is an original equipment manufacturer (OEM) and original design manufacturer (ODM) for major international brand name companies such as Nike, Crocs, Adidas, Reebok, Asics, New Balance, Puma, Timberland and Rockport.\n", "\n", "Title: Toyota\n", "Text: Toyota Motor Corporation (Japanese: トヨタ自動車株式会社 , Hepburn: Toyota Jidōsha KK ) is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. In March 2014, Toyota's corporate structure consisted of 338,875 employees worldwide and, as of 2016 , was the ninth-largest company in the world by revenue. As of 2016, Toyota is the world's largest automotive manufacturer. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year which it has done since 2012, when it also reported the production of its 200-millionth vehicle. s of 2014 , Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as #2-ranked SoftBank) and by revenue.\n", "\n", "Title: Hardy Diagnostics\n", "Text: Hardy Diagnostics is an American company that manufactures and sells bacteriological culture media, reagents, automated microscope slide staining machines, and rapid identification kits for microbiological testing in clinical, research, and industrial laboratories. The company's culture media is useful in the detection of bacterial pathogens, such as Salmonella, Listeria, E. coli, Tuberculosis, Staphylococcus, Streptococcus, Pneumococcus, Legionella, and others. Founded by Jay Hardy in 1980 and headquartered in Santa Maria, California, Hardy Diagnostics is the third-largest manufacturer of culture media in the United States, manufacturing more than 2,700 different media products. Hardy Diagnostics was recognized by Inc. Magazine as one of the 5000 fastest-growing private companies in the United States in 2009, 2010, 2011, and 2012. In August 2011 Hardy Diagnostics was chosen as \"Business of the Year\" by the Santa Maria Valley Chamber of Commerce. The company has three manufacturing facilities, headquartered in Santa Maria, California. A second media manufacturing facility is located in Springboro, Ohio. In January 2016 the company acquired a Wichita Falls, Texas manufacturer of automatic microscope slide stainers and dubbed the new division QuickSlide.\n", "\n", "Title: General Mills\n", "Text: General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. The company markets many well-known North American brands, including Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, Häagen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.\n", "\n", "Title: Juki\n", "Text: JUKI Corporation (JUKI株式会社 , JUKI Kabushiki-gaisha ) is a Japanese manufacturer of industrial sewing machines and recently domestic machines headquartered in Tama-shi, Tokyo. It is one of the leading industrial machine manufacturers. JUKI ranks as the no.1 sewing machine manufacturer in the world. Headquartered in Japan, the company currently has manufacturing facilities in Japan, China, Vietnam and markets its products in more than 150 countries on six continents. Up until 1988, the company was known as \"Tokyo Juki Industrial Company, Ltd.\". The company motto, which doubles as a customer creed is \"Mind & Technology\" (as in 'emotionally accessible technology').\n", "\n", "Title: TaeguTec\n", "Text: TaeguTec Ltd. (Korean: 대구텍), formerly known as Korea Tungsten Company, is a multinational corporation headquartered in Daegu, Korea. It is the largest cutting tools manufacturer in the Far East, also Korea's largest manufacturer of tungsten cutting tools and hard metal tools with the only integrated tungsten production plant in the world. TaeguTec group has 26 overseas subsidiaries and over 130 distributors and 30 agents in 50 countries across Europe, Asia, Australia, and the American countries. Considered as the world's oldest manufacturer of tungsten and related products, the group has earned reputation for its excellent global marketing and large production capacity worldwide. In addition to the initial 80 per cent stake purchased in 2006, Warren Buffett paid additional 2 billion dollars for the remaining stake in IMC, of which TaeguTec was a part. Through this acquisition, TaeguTec became Berkshire Hathaway's first and only wholly owned subsidiary in Korea. On October 25, 2007, Buffett flew to Daegu to tour TaeguTec and to meet with the management. On March 21, 2011, Warren Buffett re-visited the firm to attend TaeguTec Plant 2 inauguration ceremony and later met with Korean President Lee Myung-bak.\n", "\n", "Title: QiKU\n", "Text: QiKU Internet Network Scientific (Shenzhen) Co., Ltd. is a Chinese smartphone manufacturer headquartered in Shenzhen, Guangdong. The manufacturer is a joint venture between Chinese internet giant Qihoo 360 and telecommunications equipment manufacturer Coolpad, blending the former’s software expertise and the latter’s experience in smartphone manufacturing.\n", "\n", "Title: Everex\n", "Text: Everex (\"Ever for Excellence!\") is a manufacturer of desktop and notebook personal computers. It was established in 1983 and headquartered in Fremont, California. The company was founded by Steve Hui, John Lee and Wayne Cheung. In 1988, Everex was the leader in tape backup sales with half of the world market. On January 5, 1993 the company filed for bankruptcy and was purchased by Formosa Plastics Group, hence becoming part of a multinational conglomerate alongside companies like First International Computer, the world's leading motherboard manufacturer. On December 29, 2006 Everex Systems, Inc filed a voluntary petition for liquidation under Chapter 7, and in June 2008 NewMarket Technology has taken control of Everex.\n", "\n", "Question: In what state is the manufacturer of Bisquick headquartered?\n", "\n", "Answer:\n", "Predictions: Minnesota\n", "Solutions: Minnesota\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Don't Stop the Music (Robyn album)\n", "Text: Don't Stop the Music is the third studio album by Swedish pop singer Robyn. It was released on 30 October 2002 in Sweden by BMG. The album peaked at #2 in her native Sweden, and the two singles \"Keep This Fire Burning\" and \"Don't Stop the Music\" were both top 10 hits. In 2003, \"Don't Stop The Music\" was certified platinum by IFPI, and has sold over 60,000 copies in Sweden.\n", "\n", "Title: You Keep Me Hangin' On\n", "Text: \"You Keep Me Hangin' On\" is a 1966 song written and composed by Holland–Dozier–Holland. It first became a popular \"Billboard\" Hot 100 number one hit for the American Motown group The Supremes in late 1966. The rock band Vanilla Fudge covered the song a year later and had a top ten hit with their version. British pop singer Kim Wilde covered \"You Keep Me Hangin' On\" in 1986, bumping it back to number one on the \"Billboard\" Hot 100 in June 1987. The single reached number one by two different musical acts in America. In the first 32 years of the \"Billboard\" Hot 100 rock era, “You Keep Me Hangin' On” became one of only six songs to achieve this feat. In 1996, country music singer Reba McEntire's version reached number 2 on the US \"Billboard\" Hot Dance Club Play chart.\n", "\n", "Title: Madonna videography\n", "Text: American entertainer Madonna has released 68 music videos, 11 concert tour videos, 2 documentary videos, 4 music video compilations, 2 music video box sets, 4 promotional videos, and 5 video singles. In 1982, Madonna signed a recording contract with Sire Records and released her first two singles before launching her eponymous debut album. Her first video to receive attention on MTV was \"Borderline\", followed by \"Lucky Star\" and \"Like a Virgin\", which popularized Madonna's image and fashion among younger generation. Her early videos were released commercially on \"Madonna\" (1984), which became the best-selling videocassette of 1985. With the title track from her third studio album \"True Blue\" (1986), Madonna's impact on MTV and popular music was established when a contest entitled \"Making My Video\", was held to create a music video for the song. \" La Isla Bonita\" and \"Who's That Girl\", both released in 1987, showed Madonna's fascination with Hispanic culture and religious symbolism. In 1989, the video of \"Like a Prayer\" portrayed her dancing in front of burning crosses, receiving stigmata, kissing a black saint and having sex with him in a church altar. It faced strong reaction from religious groups and media. \" Express Yourself\" released the same year was critically appreciated for its positive feminist themes.\n", "\n", "Title: Ghost (production team)\n", "Text: Ghost is a Swedish record producing and songwriting team, composed of Ulf Lindström and Johan Ekhé, based in New York City. They are perhaps best known for writing and producing Swedish singer Robyn's three first studio albums, \"Robyn Is Here\" (1996), \"My Truth\" (1999), and \"Don't Stop the Music\" (2002). Robyn's \"Keep This Fire Burning\" from 2003 was the fourth most played song by Swedish songwriters on Swedish radio from 2000–2009. It was later covered by British soul singer Beverley Knight.\n", "\n", "Title: Keep This Fire Burning\n", "Text: \"Keep This Fire Burning\" is a song by Swedish pop singer Robyn, released as the first single from her third album \"Don't Stop the Music\". It was released in Sweden on September 21, 2002, where it became her highest charting single since 1995's \"Do You Really Want Me (Show Respect)\". The song was also released as a single in Australia under the name \"By Your Side\", due to the Australian bush fires which were happening at the time. In 2008, a re-recorded version of the song appeared on the special edition of Robyn's eponymous album.\n", "\n", "Title: I'll Keep the Lovelight Burning\n", "Text: \"I'll Keep the Lovelight Burning\" is a popular song written in 1942 by Harry Tobias, Nick Kenny, and Harold Levey, popularized by Patti Page in 1949. Louis Armstrong also covered the song in 1949.\n", "\n", "Title: William Gibson\n", "Text: William Ford Gibson (born March 17, 1948) is an American-Canadian speculative fiction writer and essayist widely credited with pioneering the science fiction subgenre known as cyberpunk. Beginning his writing career in the late 1970s, his early works were noir, near-future stories that explored the effects of technology, cybernetics, and computer networks on humans—a \"combination of lowlife and high tech\"—and helped to create an iconography for the information age before the ubiquity of the Internet in the 1990s. Gibson notably coined the term \"cyberspace\" in his short story \"Burning Chrome\" (1982) and later popularized the concept in his acclaimed debut novel \"Neuromancer\" (1984). These early works have been credited with \"renovating\" science fiction literature after it had fallen largely into insignificance in the 1970s.\n", "\n", "Title: Phil Driscoll\n", "Text: Phil Driscoll (born November 9, 1947) is a trumpeter, singer, composer, and producer. He performs in varying music genres and styles which include rock and roll, rhythm and blues, and patriotic music, and is best known for his work in Christian music and his longterm Christian ministry. In 1985, Driscoll won the Grammy Award for Best Gospel Performance – Duo/Group for a duet with Debby Boone on \"Keep the Flame Burning\", and he has been nominated for three additional Grammys, two for Best Gospel Performance – Male and one for Best Gospel/Pop Album. He has also won three Dove Awards for his music, and the 1999 Christian Country Music Association Award for Best Musician. In 2006, Driscoll was found guilty on 2 counts of tax evasion and one count of conspiracy, and was sentenced to serve one year in Federal prison, beginning on March 14, 2007.\n", "\n", "Title: Patti Page\n", "Text: Clara Ann Fowler (November 8, 1927 – January 1, 2013), known by her professional name Patti Page, was an American singer of traditional pop music and country music. She was the top-charting female vocalist and best-selling female artist of the 1950s, selling over 100 million records during a six-decade long career. She was often introduced as \"the Singin' Rage, Miss Patti Page\". New York WNEW disc-jockey William B. Williams introduced her as \"A Page in my life called Patti\".\n", "\n", "Title: Burning of the Clavie\n", "Text: Burning the clavie is an ancient Scottish custom still observed at Burghead, a fishing village on the Moray Firth. The \"clavie\" is a collection of casks split in two, lit as a bonfire in the evening of 11 January, i.e. New Year's Eve (in Scotland, Hogmanay) by the Julian Calendar. One of these casks is joined together again by a huge nail (Latin \"clavis\"; hence the term, it may also be from Scottish Gaelic \"cliabh\", a basket used for holding combustibles). It is then filled with tar, lighted and carried flaming round the village and finally up to a headland upon which stands the ruins of an altar, locally called the \"Doorie\". It here forms the nucleus of the bonfire, which is built up of split casks. When the burning tar-barrel falls in pieces, the people scramble to get a lighted piece with which to kindle the New Year's fire on their cottage hearth. The charcoal of the \"clavie\" is collected and put in pieces up the cottage chimneys, to keep spirits and witches from coming down.\n", "\n", "Question: In what year was the singer who popularized \"I'll Keep the Lovelight Burning\" born?\n", "\n", "Answer:\n", "Predictions: 1927\n", "Solutions: 1927\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Danielle Nicole\n", "Text: Danielle Nicole was previously in the band Trampled Under Foot with her brothers Kris and Nick Schnebelen. At the 2014 Blues Music Awards, Trampled Under Foot's album, \"Badlands\", won the 'Contemporary Blues Album of the Year' category. At the same ceremony, Danielle Nicole, under the name of Danielle Schnebelen, triumphed in the 'Best Instrumentalist – Bass' category. The band was also nominated in the 'Band of the Year' category.\n", "\n", "Title: Danielle Panabaker\n", "Text: Danielle Nicole Panabaker (born September 19, 1987) is an American actress. She began acting as a teenager and first came to prominence for her roles in the Disney films \"Stuck in the Suburbs\" (2004), \"Sky High\" (2005) and \"Read It and Weep\" (2006), the latter alongside her younger sister Kay Panabaker, and in the HBO miniseries \"Empire Falls\" (2005).\n", "\n", "Title: Custody (2007 film)\n", "Text: Custody is a 2007 Lifetime television movie, starring Rob Morrow, James Denton, and Kay Panabaker about a widower's fight for custody of the daughter he raised and legally adopted, when her birth father who abandoned her returns. Aired on September 8, 2007. It was filmed in and around Ottawa on locations such as the University of Ottawa, Rideau Canal, and Le Chateau Montebello. It was based on the book \"Figures of Echo\", by Mary S. Herczog.\n", "\n", "Title: Nancy Drew (2007 film)\n", "Text: Nancy Drew is a 2007 American mystery comedy film loosely based on the popular series of mystery novels about the titular teen detective. It stars Emma Roberts as Nancy Drew, Max Thieriot as Ned, Kay Panabaker as George, and Amy Bruckner as Bess Marvin. Set in Los Angeles, it was directed by Andrew Fleming.\n", "\n", "Title: Beverly Hills Chihuahua 3: Viva la Fiesta!\n", "Text: Beverly Hills Chihuahua 3: Viva la Fiesta! is a 2012 American direct-to-DVD comedy film directed by Lev L. Spiro. It is the third and final installment of the \"Beverly Hills Chihuahua\" series, and stars George Lopez, Odette Annable and Logan Grove. The film focuses on Papi, Chloe and the puppies moving to a hotel. Pedro finds love when he falls head over heels for Charlotte. The film was released by Walt Disney Studios Home Entertainment on September 18, 2012 in a two-disc Blu-ray/DVD combo pack. Zachary Gordon and Chantily Spalan did not reprise their roles as Papi, Jr. and Rosa. This was Kay Panabaker's final film before she retired to become a zoologist.\n", "\n", "Title: Little Birds (film)\n", "Text: Little Birds is a 2011 American film written and directed by Elgin James, and starring Juno Temple and Kay Panabaker. The film follows two girls that leave home to follow two skateboarders to Los Angeles and is loosely based on the life of director Elgin James. The film premiered at the Sundance Film Festival, with Millennium Entertainment acquiring the North American rights to the film.\n", "\n", "Title: Kay Panabaker\n", "Text: Stephanie Kay Panabaker (born May 2, 1990) is an American actress, voice actress, and zookeeper. She is best known for her roles as Jenny Garison in the 2009 reboot of \"Fame\", Debbie Berwick on \"Phil of the Future\" and Nikki Westerly on \"Summerland\". She is the younger sister of Danielle Panabaker.\n", "\n", "Title: Read It and Weep\n", "Text: Read It and Weep is a 2006 Disney Channel Original Movie which premiered on July 21, 2006. It is based on the novel \"How My Private, Personal Journal Became A Bestseller\" by Julia DeVillers. Sisters Kay and Danielle Panabaker star as Jamie Bartlett and her alter ego Isabella (Iz or Is), respectively. Both sisters have starred in previous Disney Channel films: Kay in \"Life Is Ruff\" (2005), and Danielle in \"Stuck in the Suburbs\" (2004), like \"Read It and Weep\", those films also premiered in July in their respective years.\n", "\n", "Title: Moondance Alexander\n", "Text: Moondance Alexander is a comedy-drama film directed by Michael Damian and written by Janeen Damian. The film was released in North America in October, 2007. The story is shot on location in Okotoks, High River and Calgary, Alberta, Canada and is based on actual events from the life of Janeen Damian. It stars former Summerland (TV series) co-stars Kay Panabaker as Moondance Alexander and Lori Loughlin as Gelsey Alexander. The movie co-stars Don Johnson and Olympic-skating silver medalist Sasha Cohen.\n", "\n", "Title: Life Is Ruff\n", "Text: Life Is Ruff is a 2005 Disney Channel Original Movie starring Kyle Massey, Mitchel Musso, and Kay Panabaker.\n", "\n", "Question: In which movie the Stephanie Kay Panabaker was alongside with her elder sister Danielle Nicole Panabaker?\n", "\n", "Answer:\n", "Predictions: \"Read It and Weep\"\n", "Solutions: \"Read It and Weep\" (2006)\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Jeguk Sinmun\n", "Text: The Jeguk Sinmun (\"Imperial Post\"; 1898-1910) was a Seoul-based Korean language newspaper founded in 1898 by Yi Jong-myeon. It was published using the purely vernacular Hangeul script and attracted a largely lower or middle class and female readership. It was less political than the other papers of the period, concentrating instead on social issues. One of its early reporters was the young Syngman Rhee.\n", "\n", "Title: Velvetpark\n", "Text: Velvetpark: Dyke Culture in Bloom is a lesbian and feminist arts and culture website that regularly features music, literature, theater, fine arts, film, television, and social activism as it impacts queer culture. \"Velvetpark\" also hosts a social network and dating community for lesbians and queer-identified women.\n", "\n", "Title: Anna Kalata\n", "Text: Anna Kalata (born May 10, 1964, Milanówek, Poland) is a Polish politician, celebrity and occasional actress. She was a member of the populist Samoobrona party. In Jarosław Kaczyński's cabinet she was the minister of labour and social policy. She participated in the 12th season of Taniec z Gwiazdami (the Polish version of Dancing With The Stars). After losing 38 kg she appeared on the cover of Shape magazine.\n", "\n", "Title: Shape (magazine)\n", "Text: Shape is a monthly English language fitness magazine started by Weider Publications in 1981, founded by Christine MacIntyre (a pioneer in women's free weight fitness) and became the number one women's fitness magazine. At that time, Weider Enterprises consisted primarily of the bodybuilding magazine \"Muscle & Fitness\". Joe Weider and Christine MacIntyre had differing views of how to present \"Shape\", Weider endorsing a less journalistic and more commercial approach to articles, MacIntyre endorsing a more academic, doctor-based magazine. Weider also endorsed a sexier approach to editorial while MacIntyre endorsed a healthier look for women, eschewing sexiness in the models and the copy. MacIntyre largely won that battle, editing a magazine that required that every byline have an advanced medical degree, that cover models should look healthy rather than sexy, and that sexist language be avoided. Christine MacIntyre was the editor-in-chief until her death in 1988. Tara Kraft is the current editor-in-chief. \"Shape\" found a readership based on that formula.\n", "\n", "Title: Cynthia Heimel\n", "Text: Cynthia Heimel (née Glick) (born 1947 in Philadelphia) is a feminist humorist writer from Oakland, California. She is a columnist and the author of satirical books primarily aimed at a female readership and known for their unusual titles, as well as a playwright and television writer.\n", "\n", "Title: Femme\n", "Text: Femme is a lesbian sexual identity that was created in the working class lesbian bar culture of the 1950s. It is a term used to distinguish feminine lesbian and bisexual women from their butch/stud lesbian counterparts and partners. Today the term is still used in this way but in recent years - following the influence of Queer gender identity theories - its meaning has, sometimes contentiously, been expanded to describe a queer-identified person who is feminine in their presentation regardless of their gender or sexuality.\n", "\n", "Title: Chapstick lesbian\n", "Text: A chapstick lesbian is a sub-group within lesbianism that Ellen DeGeneres popularised in 1997 in her show \"Ellen\". It was originally constructed as response to the phrase \"lipstick lesbian\" that emerged in 1990, which refers to a femme lesbian who emphasises their female identity through their self-presentation. The slang term \"chapstick lesbian\" identifies a category on the femme-butch lesbian continuum, where the female homosexual has a gender identity bias towards femme lesbianism, although does not identify or fit the criteria of being a lipstick lesbian. The word is frequently used as an alternative to the term \"soft-butch\" lesbian or androgynous. The key attributes recognisable of a chapstick lesbian is that they have a casual dress-code and lack of desire to wear make-up. Next to this, they are also viewed as being athletic in nature and have a notable interest in sport.\n", "\n", "Title: Elana Amsterdam\n", "Text: Elana Amsterdam is the New York Times Bestselling author of \"Paleo Cooking from Elana's Pantry\". She writes cookbooks for gluten-free cooking, using almond flour and coconut flour as a gluten-free alternative to wheat flour. Her book, \"The Gluten-Free Almond Flour Cookbook\", was named one of the \"Best Cookbooks of 2009\" by The Denver Post. Amsterdam has partnered with the California Almond Board in conjunction with her works. Her blog, elanaspantry.com, was named one of the top 50 food blogs by Cision. Amsterdam contributed an article to Shape Magazine and she was featured on Fox News's On the Hunt with Jonathan Hunt.\n", "\n", "Title: Shōjo manga\n", "Text: Shōjo, shojo, or shoujo manga (少女漫画 , shōjo manga ) is manga aimed at a teenage female readership. The name romanizes the Japanese 少女 (shōjo), literally \"young woman\". Shōjo manga covers many subjects in a variety of narrative styles, from historical drama to science fiction, often with a focus on romantic relationships or emotions. Strictly speaking, however, shōjo manga does not comprise a style or genre, but rather indicates a target demographic.\n", "\n", "Title: Celesbian\n", "Text: The term celesbian (a portmanteau of \"celebrity\" and \"lesbian\") originally referred to a female celebrity known or reputed to be a lesbian and popular within the LGBT community. Celesbianism as a Western media phenomenon came into vogue in 2008, when several female celebrities presented themselves as lesbians. The term was first used by New Yorkers Pam Franco and Susan Levine, a disk jockey. It was used in a full-page ad in a lesbian nightlife magazine, \"GO MAGAZINE\". The ad was for the Mz Hip and Fit NY contest, the idea of Denise Cohen of Denco Designs & Events. The contest was a search for the hottest lesbian in the United States. The term \"celesbian\" was used for the celebrity lesbian judges.\n", "\n", "Question: Is Velvetpark or Shape magazine written more for a lesbian and queer-identified female readership?\n", "\n", "Answer:\n", "Predictions: Velvetpark\n", "Solutions: Velvetpark\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Peppes Pizza\n", "Text: Peppes Pizza is a Norwegian pizza chain that serves American style and Italian style pizza. Peppes is the largest pizza chain in Scandinavia. The restaurant was founded by two Americans, Louis Jordan and his wife Anne from Hartford, Connecticut. The restaurant chain is part of Umoe Catering As which consists of restaurants such as Burger King, TGI Fridays, La Baguette and Cafe Opus. Peppes Pizza is one of the first restaurants that brought foreign food to Norway. 9 million pizzas are served by Peppes each year with deliveries in 11 cities in Norway. Their menu was first put online in March 1995. The servings have been described as enough for two people and that the pizza chain is \"a cut above the rest\".\n", "\n", "Title: Gino's East\n", "Text: Gino's East is a Chicago-based restaurant chain, notable for its deep-dish pizza (sometimes called Chicago-style pizza), and for its interior walls, which patrons have covered in graffiti and etchings. The restaurant features deep-dish pizza baked in cast-iron pans, as well as sandwiches, soups and salads.\n", "\n", "Title: Big Mama's & Papa's Pizzeria\n", "Text: Big Mama's & Papa's Pizzeria is a pizza restaurant chain primarily located in Southern California. The chain is notable for its extremely large \"Giant Sicilian\" pizza, which is claimed to be the largest deliverable pizza in the world. Additionally, the chain gained notoriety when, during the 2014 Academy Awards, host Ellen Degeneres had Big Mama's pizzas delivered onstage.\n", "\n", "Title: Papa John's Pizza\n", "Text: Papa John's Pizza is an American restaurant franchise company. It runs the third largest take-out and pizza delivery restaurant chain in the United States, with headquarters in Jeffersontown, Kentucky, a suburb of Louisville.\n", "\n", "Title: Pizza 73\n", "Text: Pizza 73 is a Canadian restaurant chain that offers a number of different styles of pizza, along with chicken wings. It has been operated by Pizza Pizza since 2007. Toronto-based Pizza Pizza had acquired the restaurant for a total of $CAN70.2 million. There are 89 locations throughout Western Canada, which include the provinces of British Columbia, Alberta, and Saskatchewan. The restaurant's name originates from its original phone number: 473–7373. Founded by David Tougas and Guy Goodwin in 1985, Pizza 73 is headquartered in Edmonton, Alberta, Canada.\n", "\n", "Title: Papa Gino's\n", "Text: Papa Gino's, Inc. is a restaurant chain based in Dedham, Massachusetts specializing in American-style pizza along with pasta, subs, salads, and a variety of appetizers. There are over 150 Papa Gino's locations in Connecticut, Maine, Massachusetts, New Hampshire, and Rhode Island.\n", "\n", "Title: Pie Five\n", "Text: Pie Five Pizza Co. is a fast casual restaurant chain specializing in handcrafted personal pizza made in less than 5 minutes. The brand is owned by Rave Restaurant Group, which also owns Pizza Inn. As of December 2016, Pie Five has 98 restaurants in the following locations: Alabama, Arkansas, Florida, Georgia, Illinois, Indiana, Kansas, Maryland, Minnesota, Missouri, Nebraska, North Carolina, Oklahoma, Tennessee, Texas, Utah, Kentucky, Virginia and Washington, D.C. with more than 400 additional company-owned and franchise units anticipated.\n", "\n", "Title: Gino's Pizza and Spaghetti\n", "Text: Gino's Pizza and Spaghetti is a restaurant chain with 40 locations, most of them within the U.S. state of West Virginia. The company was founded by Kenney Grant in 1961. Many locations are shared with Tudor's Biscuit World although the Gino's brand is exclusive to West Virginia. There is one located in Ohio, while there are stand alone Tudor's locations in eastern Kentucky, southern Ohio and southwest Virginia. Gino's serves pizza, spaghetti, sandwiches, and more. Company headquarters are located in Huntington, West Virginia and Nitro, West Virginia.\n", "\n", "Title: Pizza Inn\n", "Text: Pizza Inn is an American restaurant chain and international food franchise, specializing in American-style pan pizza and side dishes. The company is based in the Dallas suburb of The Colony, Texas.\n", "\n", "Title: Tudor's Biscuit World\n", "Text: Tudor's Biscuit World is a restaurant chain based in Huntington, West Virginia, most commonly found in West Virginia. Many West Virginia locations share a building with Gino's Pizza and Spaghetti, although the chain is more extensive than Gino's (which is exclusive to West Virginia), having locations in southern Ohio, eastern Kentucky, and southwestern Virginia. In 2016 a franchise was opened in Panama City, Florida. Tudor's serves biscuits, biscuit sandwiches, homestyle breakfasts and dinners, muffins, and several side dishes. The chain was originally based in Charleston, West Virginia and many of the biscuit sandwiches are named for sports teams of interest in that area, including teams at Marshall University, West Virginia University, and The University of Charleston.\n", "\n", "Question: Which restaurant chain's headquarters is further north, Pizza Inn or Papa Gino's?\n", "\n", "Answer:\n", "Predictions: Papa Gino's headquarters is further north than Pizza Inn's headquarters.\n", "Solutions: Papa Gino's\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Kanthari\n", "Text: Kanthari is a Malayalam comedy entertainment movie released under the banner of Sri Shirdi Sai Baba R Prabhukumar. Directed and scripted By Ajmal. \"Kanthari\" Mollywood movie star casts are Rachana Narayanankutty, Sekhar Menon, Subiksha, Rajshri Nair, Sreejith Ravi, Manav, Balaji and others. This movie songs and background score (music) composed by Arun Choudary, Gautham Rinil (BGM) and released in the date of 19/6/2015 (Jun 19, 2015)\n", "\n", "Title: Arun Date\n", "Text: Arun Date is a well known Marathi singer of Bhavageete. Originally a textile engineer, Arun Date left his high-profile job after 28 years of service for pursuing career in singing. The song \"Shukratara by Date\" was adjudged as song of the month by Mumbai Radio Station in 1962 and remains one of the most popular song in contemporary Marathi culture. Arun Date was first recipient of Gajananrav Vatave Purskar. His father Ramubhaiyya was a government officer in Indore, and was part of Marathi literary and music circles. Ramu-bhayya Date was friends with famous personalities like Kumar Gandharva, Pu La Deshpande, Va Pu Kale. He encouraged his children, Arun and Ravi, to learn music.\n", "\n", "Title: Arun Sarnaik\n", "Text: Arun Shankarrao Sarnaik (4 October 1935 – 21 June 1984) was an actor and singer from Kolhapur, Maharashtra, India. He was the son of the famous singer \"Maharashtrakokil\" Pt. Shankarao Sarnaik and brother of famous classical singer \"Pandit Nivruttibua Sarnaik\" from Jaipur Atrauli Gharana (4 July 1912 – 16 February 1994).\n", "\n", "Title: Ramanand Sagar\n", "Text: Ramanand Sagar (29 December 1917 – 12 December 2005) (born Chandramauli Chopra) was an Indian film director. He is most famous for making the \"Ramayan\" television series, a 78-part TV adaptation of the ancient Hindu epic of the same name, starring Arun Govil as Lord Ram and Deepika Chikhalia as Sita. The Government of India awarded him the civilian honour of Padma Shri in 2000.\n", "\n", "Title: Bhavageete\n", "Text: Bhpppavageete or Bhavageeth (literally 'emotion poetry') is a form of expressionist poetry and light music. Most of the poetry sung in this genre pertain to subjects like love, nature, philosophy etc., and the genre itself is not much different from Ghazals, though ghazals are bound to a peculiar metre. This genre is quite popular in many parts of India, notably in Karnataka and Maharashtra. This genre may be called by different names in other languages.\n", "\n", "Title: Manakamana of Tumlingtar\n", "Text: Manakamana is the most famous temple situated in Tumlingtar about 5 Kilometers north of Tumlingtar Airport. It is in the north east of Tumlingtar bazar on the bank of Arun River. It is said that it was taken here from Manakamana of Gorkha. About a hundred old people live there and pray to God for their salvation after their deaths. Every year thousands of people come to worship the Goddess and for fasting in November (on the eleventh after the New Moon of Kartik.)\n", "\n", "Title: Sudha Malhotra\n", "Text: Sudha Malhotra is an Indian playback singer. She also acted in some Bollywood films and as a playback singer worked in popular Bollywood movies in the 1950s and 1960s, like \"Arzoo\", \"Dhool Ka Phool\", \"Ab Dilli Door Nahin\", \"Girl Friend\", \"Barsat Ki Raat\", \"Didi\", \"Kala Pani\", \"Prem Rog\", and \"Dekh Kabira Roya\". She was last heard in Raj Kapoor's \"Prem Rog\" (1982) in the song \"Yeh Pyar tha ya kuch aur tha\". Apart from Hindi songs Sudha sang many popular Marathi songs (Bhavgeet) with Arun Date.\n", "\n", "Title: Arun Thapa\n", "Text: Arun Thapa (born January 1952 – 22 July 1999) was a famous Nepali singer and songwriter.\n", "\n", "Title: Bhakla\n", "Text: Bhakla is a Chhattisgarhi film released on 5 May 2006. This film is notable because Lata Mangeshkar sang a song in this film, which was her first and last Chhattisgarhi song. Composer for his movie is Kalyan Sen, who is notable music director in Chhattisgarh. He is son of the Famous Gwalior Gharana Musicologists Dr Arun Kumar Sen & Dr. Aneeta Sen, & elder brother of Shekhar Sen.\n", "\n", "Title: Pakka Inti Ammayi\n", "Text: Pakkinti Ammayi or Pakka Inti Ammayi is a 1953 Telugu comedy film produced by East Indian Company and directed by Chittajalu Pullayya. It is based on a Bengali story \"Pasher Bari\" by Arun Chowdhury. The film featured Anjali Devi as the beautiful neighbour girl. Famous comedian Relangi Venkata Ramaiah acted as her lover Subbarayudu and veteran South Indian singer A. M. Rajah as his opponent. This film was remade in Tamil as \"Adutha Veetu Penn\".\n", "\n", "Question: whats the famous bavagheet by arun date?\n", "\n", "Answer:\n", "Predictions: Shukratara\n", "Solutions: Shukratara\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Roger Kitter\n", "Text: Roger Kitter (20 October 1949 – 3 January 2015) was an English actor best known for playing Captain Alberto Bertorelli in series 7 of the British sitcom TV series \"'Allo 'Allo! \". He had previously appeared weekly with Lulu throughout the 10-week run of her 1973 BBC1 series \"It's Lulu\". With Kaplan Kaye he also recorded a song \"Chalk Dust – the Umpire Strikes Back\" using the moniker 'The Brat'. Released on the Hansa label, it entered the UK Singles Chart on 10 July 1982; it reached a peak of number 19, and remained in the chart for 8 weeks. The song was a Top 10 hit in the Netherlands, Belgium and South Africa, and lampooned John McEnroe complaining about line calls in tennis (\"The ball's in, everyone can see that the ball's in!\") . He was also an impressionist, who provided the voice of Tommy Cooper in the Lego 'Kipper' advertisement.\n", "\n", "Title: Grown-Ups\n", "Text: Grown-Ups is a 1980 British BBC television film devised and directed by Mike Leigh. It stars Lesley Manville, Philip Davis, Brenda Blethyn, Janine Duvitski, Lindsay Duncan and Sam Kelly. It was edited by Robin Sales and produced by Louis Marks for the BBC, and originally shown on BBC 2 on 28 November 1980.\n", "\n", "Title: Richard Gibson\n", "Text: Richard Gibson (born 1 January 1954) is an English actor, probably best known for his role as the archetypal Gestapo Officer Herr Otto Flick in the BBC hit sitcom series, \"'Allo 'Allo! \".\n", "\n", "Title: Paris (1994 TV series)\n", "Text: Paris is a British sitcom produced by Talkback Productions for Channel 4. It was written jointly by Irish writers Arthur Mathews and Graham Linehan, best known for their later sitcom Father Ted. The show only lasted one series consisting of six episodes in October and November 1994. It featured the escapades of French artist Alain Degout living in 1920s Paris, who wants to be famous, but his work gets him nowhere. Unlike BBC sitcom 'Allo 'Allo, which was also set in France, featuring characters speaking in French accents, the characters of Paris spoke in an English accent.\n", "\n", "Title: Jack Haig\n", "Text: Jack Haig (born John Cecil Coppin, 5 January 1913 – 4 July 1989) was an English actor who specialised in supporting roles, mainly in Television comedy, he was best known for his role on sitcom 'Allo 'Allo! as Monsieur Roger LeClerc\n", "\n", "Title: The Best of 'Allo 'Allo!\n", "Text: The Best of 'Allo 'Allo! was broadcast on 17 August 1994, two years after the ending of the BBC sitcom \"'Allo 'Allo! \", to celebrate the 10th anniversary of the broadcast of the first series. The actual pilot for the show had been broadcast nearly 12 years earlier, when this show was broadcast.\n", "\n", "Title: List of 'Allo 'Allo! episodes\n", "Text: The following is a list of episodes for the British sitcom \"'Allo 'Allo! \" that aired from 1982 to 1992. Following the Pilot in 1982, the series was officially launched two years later in 1984 (Series 1) and continued to Series 9 (1992); including two Christmas Special episodes in 1985 (between Series 2 and 3) and in 1991 (between Series 7 and 8). The last series (Series 9) was followed by two retrospective episodes in 1994 (\"The Best of 'Allo 'Allo! \") & 2007 (\"The Return of 'Allo 'Allo! \"). In total, including the Pilot, the two Christmas Specials and the two post series retrospective episodes; there are 87 episodes. Dates shown are original air dates on BBC One (except for the \"The Return of 'Allo 'Allo! \" episode which was broadcast on BBC Two).\n", "\n", "Title: Nicholas Frankau\n", "Text: Nicholas Frankau (born 16 July 1954 in Stockport, Cheshire) is an English actor best known for playing the role of Flt. Lt. Carstairs in the British sitcom \"'Allo 'Allo! \" whose recurring theme involves failure to get back to Britain.\n", "\n", "Title: Vicki Michelle\n", "Text: Vicki Michelle {'1': \", '2': \", '3': \", '4': \"} (born 14 December 1950) is an English actress. She is best known for her role as Yvette Carte-Blanche in the BBC television comedy series \"'Allo 'Allo! \" and as a recurring character Patricia Foster in the ITV soap opera \"Emmerdale\".\n", "\n", "Title: Sam Kelly\n", "Text: Roger Michael Kelly (19 December 1943 – 14 June 2014), known by the stage name Sam Kelly, was an English actor who appeared in film, television, radio and theatre. He is best known for his roles as Captain Hans Geering in \"'Allo 'Allo! \", Warren in \"Porridge\" and Ted Liversidge in \"Barbara\".\n", "\n", "Question: Grown-Ups starred the actor who was best known for which role on \"'Allo 'Allo!\"?\n", "\n", "Answer:\n", "Predictions: Captain Hans Geering\n", "Solutions: Captain Hans Geering\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Mark J. Lewis\n", "Text: Dr. Mark J. Lewis was the Chief Scientist of the U.S. Air Force, Washington, D.C. from 2004 to 2008 and was the longest-serving Chief Scientist in Air Force history. He served as chief scientific adviser to the Chief of Staff and Secretary of the Air Force, and provided assessments on a wide range of scientific and technical issues affecting the Air Force mission. In this role he identified and analyzed technical issues and brought them to attention of Air Force leaders, and interacted with other Air Staff principals, operational commanders, combatant commands, acquisition, and science & technology communities to address cross-organizational technical issues and solutions. His primary areas of focus included energy, sustainment, long-range strike technologies, advanced propulsion systems, and workforce development.\n", "\n", "Title: Mark T. Maybury\n", "Text: Mark Thomas Maybury, PhD (born December 13, 1964) is an American computer scientist and Chief Scientist of the United States Air Force, Washington, D.C. He serves as chief scientific adviser to the Chief of Staff of the Air Force and Secretary of the U.S. Air Force, and provides assessments on a wide range of scientific and technical issues affecting the Air Force mission.\n", "\n", "Title: Michael Kelly (physicist)\n", "Text: Michael Joseph Kelly FRS FREng (born 14 May 1949) is a New Zealand-British physicist. He is Professor of Solid State Electronics and Nanoscale Science in the Division of Electrical Engineering, University of Cambridge. He was elected a Fellow of the Royal Society in 1993 and won its Hughes Medal in 2006. He was formerly the Chief Scientific Adviser to the Department for Communities and Local Government. He was elected in 1998 as a Fellow of the Royal Academy of Engineering\n", "\n", "Title: Frederick Lindemann, 1st Viscount Cherwell\n", "Text: Frederick Alexander Lindemann, 1st Viscount Cherwell, (5 April 18863 July 1957), pronounced , was a British physicist and an influential scientific adviser to the British government from the early 1940s to the early 1950s, particularly to Winston Churchill. He advocated the \"area\" bombing or \"strategic bombing\" of German cities and civilian homes during the Second World War by falsely stating data to Winston Churchill from a study on psychological impact of Germany's Birmingham Blitz and Hull Blitz on the local population. He also doubted the sophistication of Nazi Germany's radar technology and the existence of its \"V\" weapons programme.\n", "\n", "Title: Nick Jennings (computer scientist)\n", "Text: Nicholas Robert Jennings, CB, FREng, FIEEE, FIET, FBCS, CEng, CITP is the Vice-Provost for Research at Imperial College, where he also holds a Chair in Artificial Intelligence. He was previously the Regius Professor of Computer Science at the University of Southampton and Chief Scientific Adviser to the UK Government on National Security. He is an internationally recognised authority in the areas of artificial intelligence, autonomous systems, agent-based computing and cybersecurity. He has been involved in founding and advising a number of start ups including Aerogility , Contact Engine , Crossword Cyber Security , Mentat and Reliance Cyber Science .\n", "\n", "Title: Government Office for Science\n", "Text: The Government Office for Science is part of the British government. This organisation advises the UK Government on policy and decision-making based on robust scientific evidence and long-term thinking. It is led by the Government Chief Scientific Adviser (GCSA), Sir Mark Walport who reports to the Prime Minister and Cabinet.\n", "\n", "Title: Dehousing\n", "Text: On 30 March 1942 Professor Frederick Lindemann, Baron Cherwell, the British government's chief scientific adviser, sent to the British Prime Minister Winston Churchill a memorandum which after it had become accepted by the Cabinet became known as the dehousing paper.\n", "\n", "Title: John Beddington\n", "Text: Sir John Rex Beddington, HonFREng, CMG, FRS (born 13 October 1945) is Senior Adviser at the Oxford Martin School, and was previously Professor of Applied Population Biology at Imperial College London, and the UK Government Chief Scientific Adviser from 2008 until 2013.\n", "\n", "Title: David J. C. MacKay\n", "Text: Sir David John Cameron MacKay {'1': \", '2': \", '3': \", '4': \"} (22 April 1967 – 14 April 2016) was a British physicist, mathematician, and academic. He was the Regius Professor of Engineering in the Department of Engineering at the University of Cambridge and from 2009 to 2014 was Chief Scientific Adviser to the UK Department of Energy and Climate Change (DECC). MacKay was well known as author of the book \"Sustainable Energy – Without the Hot Air\".\n", "\n", "Title: Anthony Finkelstein\n", "Text: Anthony Charles Wiener Finkelstein, CBE, FREng (born 28 July 1959) is a British software engineer. He is Chief Scientific Adviser for National Security to HM Government. His research is based at the Alan Turing Institute and he holds a Chair in Software Systems Engineering at University College London (UCL).\n", "\n", "Question: who is a British physicist and also a British government's chief scientific adviser\n", "\n", "Answer:\n", "Predictions: Frederick Lindemann\n", "Solutions: Frederick Alexander\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Dr. Van Buren Knott House\n", "Text: The Dr. Van Buren Knott House is a historic building located in Sioux City, Iowa, United States. Knott was a prominent local physician. He had Chicago architect Howard Van Doren Shaw design this Colonial Revival-style house, which is considered an excellent example of the style. The 2½-story brick structure features a symmetrical facade, an entrance porch with Doric columns, a Palladian window above the front entrance, a single-story semi-circular room in the back, and a hip roof roof with dormers. On the south side of the house is a full width porch, with a sleeping porch on the second floor. A pergola in the back leads to a detached two-car garage, which was built a couple of years after the house. The house and garage were listed together on the National Register of Historic Places in 1999.\n", "\n", "Title: List of works by Howard Van Doren Shaw\n", "Text: This is a list of houses, commercial buildings, factories, and other structures by architect Howard Van Doren Shaw. Many of his buildings are now listed on the National Register of Historic Places (NRHP), either individually or as a contributing property to a historic district.\n", "\n", "Title: Howard Van Doren Shaw\n", "Text: Howard Van Doren Shaw AIA (May 7, 1869 – May 7, 1926) was an American architect. He became one of the best-known architects of his generation in the Chicago, Illinois area. Shaw was considered a leader in the American Craftsman movement, best exemplified in his 1900 remodel of Second Presbyterian Church in Chicago. He designed Marktown, Clayton Mark's planned worker community in Northwest Indiana.\n", "\n", "Title: Ragdale\n", "Text: Ragdale is the summer retreat of Chicago architect Howard Van Doren Shaw, located in Lake Forest, Illinois. It is also the home of the Ragdale Foundation. Built in 1897, the house and barn were built in Shaw's typical Arts and Crafts manner.\n", "\n", "Title: Lakeside Press Building\n", "Text: The Lakeside Press Building is a historic commercial building located at 731 S. Plymouth Ct. in downtown Chicago, Illinois. The building served as a showroom, office, and printing press for the Lakeside Press. The building was built in two stages; the southern half was completed in 1897, while the northern half was finished in 1901. Architect Howard Van Doren Shaw designed the building, his first design of a commercial building. Shaw's design features limestone quoins, piers, and decorations, curtain walls with cast iron spandrels on the floors housing the printing presses, and a projecting cornice.\n", "\n", "Title: Deerpath Hill Estates\n", "Text: Deerpath Hill Estates is a residential development in western Lake Forest, Illinois. Developer Henry K. Turnbull and architect Stanley D. Anderson planned and built the original development in 1926. Turnbull and Anderson designed the development according to the principles of the City Beautiful Movement and the ideas of Howard Van Doren Shaw, Anderson's mentor. The individual houses were designed in popular revivalist styles, including English Tudor, Colonial, and French Norman. The development was the first in Lake Forest to be planned and controlled entirely by its developer.\n", "\n", "Title: Parachute Murder\n", "Text: The Parachute murder is a name the Belgian media gave the 2010 Belgian love triangle skydiving murder trial. The defendant, elementary school teacher and amateur skydiver Els 'Babs' Clottemans, was found guilty of murder by sabotaging the parachutes of another woman, fellow skydiver Els Van Doren, because Van Doren was a rival for the love of Marcel Somers, also a skydiver. The skydive in which Van Doren died occurred on November 18, 2006. Van Doren, who was a 38 years old married mother of two and a very experienced skydiver, died when both her primary and reserve parachutes failed to deploy. The dive was captured by a video camera mounted on Van Doren's helmet. Van Doren dropped from a height of over 2 mi landing in a garden in the town of Opglabbeek. Police later established that the cords of the parachute had been cut.\n", "\n", "Title: Marktown\n", "Text: Marktown is an urban planned worker community in East Chicago, Indiana, United States, built during the Progressive Era in 1917 from marshland to provide a complete community for workers at The Mark Manufacturing Company.\n", "\n", "Title: Seven Houses on Lake Shore Drive District\n", "Text: The Seven Houses on Lake Shore Drive District is a historic district in Chicago, Illinois, United States. The district was built between 1889 and 1917 by various architects including Benjamin Marshall, Holabird & Roche, Howard Van Doren Shaw, and McKim, Mead & White. It was designated a Chicago Landmark on June 28, 1989.\n", "\n", "Title: Camp-Woods\n", "Text: Camp-Woods, is a historic estate with associated buildings located at Villanova, Delaware County, Pennsylvania and built on a 400' high spot which had been a 200-man outpost of George Washington's Army during the Valley Forge winter of 1777-8. The house, built between 1910 and 1912 for banker James M. Willcox, is a two-story, brick and limestone, \"F\"-shaped house in an Italianate-Georgian style. It measures 160 feet in length and 32 feet deep at the \"waist.\" It has a slate roof, Doric order limestone cornice, open loggia porches, and a covered entrance porch supported by Doric order columns. The house was designed by noted architect Howard Van Doren Shaw (1869-1926). The property includes formal gardens. Its former carriage house is no longer part of the main estate. The original tennis court is now also a separate property named \"Outpost Hill\". The Revolutionary encampment is marked by a flagpole in a circular stone monument at the north-western edge of the property. The inscription reads, \"An outpost of George Washington's Army encamped here thro the winter of Valley Forge 1777-1778\".\n", "\n", "Question: Howard Van Doren Shaw was the designer of which 1917 Progressive Era community? \n", "\n", "Answer:\n", "Predictions: Marktown\n", "Solutions: Marktown\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Sara Mannheimer\n", "Text: Sara Mannheimer (born 26 May 1967 in Lund) is a Swedish novelist. She hails from Gothenburg and was educated in the US, Holland, and the Czech Republic. Her debut novel \"Reglerna\" (\"The Rules\", 2008) was nominated for the August Prize and won the debut writers' prize from \"Borås Tidning\" newspaper. Another novel \"Handlingen\" (\"The Action\") was nominated for Swedish Radio's best novel prize, and won the EU Prize for Literature.\n", "\n", "Title: International Imitation Hemingway Competition\n", "Text: Also known as \"The Bad Hemingway Contest,\" The International Imitation Hemingway Competition is an annual writing competition begun in Century City, California. Started in 1977 as a \"promotional gag\", and held for nearly thirty years, the contest pays mock homage to Ernest Hemingway by encouraging authors to submit a 'really good page of really bad Hemingway' in a Hemingway-esque style.\n", "\n", "Title: Chinaman: The Legend of Pradeep Mathew\n", "Text: Chinaman: The Legend of Pradeep Mathew is a book by Shehan Karunatilaka. The book uses cricket as a device to write about Sri Lankan society. It tells the story of an alcoholic journalist's quest to track down a missing cricketer of the 1980s. The book was critically hailed, winning many awards. On 21 May 2012, \"Chinaman\" was announced as the regional winner for Asia of the Commonwealth Book Prize and went on to win the overall Commonwealth Book Prize announced on 8 June. It also won the 2012 DSC Prize for South Asian Literature, and the 2008 Gratiaen Prize. Published to great acclaim in India and the UK, the book was one of the Waterstones 11 selected by British bookseller Waterstones as one of the top debuts of 2011 and was also shortlisted for the Shakti Bhatt First Novel Prize.\n", "\n", "Title: Paul Lynch (writer)\n", "Text: Paul Lynch is an award-winning, internationally acclaimed Irish writer living in Dublin, Ireland. He was born in Limerick in 1977 and grew up in Co. Donegal, Ireland. His first novel, Red Sky in Morning, won him acclaim in the United States and France, where the book was a finalist for France's prestigious Prix du Meilleur Livre Etranger (Best Foreign Book Award). His second novel, The Black Snow, won France's bookseller prize, Prix Libr’à Nous for best foreign novel. His novels have also been nominated for France’s Prix Femina, the Prix du Premier Roman (First Novel Prize) and the Prix du Roman Fnac (Fnac Novel Prize). , as well as being shortlisted for Best Newcomer at Ireland’s Bord Gais Irish Books of the Year. Both \"Red Sky in Morning\" and \"The Black Snow\" were Amazon.com Books of the Month selections, while his debut novel was selected by Barnes and Noble pick for Discover Great New Writers series. The American novelist Ron Rash has called Lynch, \"one of his generation's very finest novelists\".\n", "\n", "Title: Ernest Hemingway\n", "Text: Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American novelist, short story writer, and journalist. His economical and understated style had a strong influence on 20th-century fiction, while his life of adventure and his public image influenced later generations. Hemingway produced most of his work between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published seven novels, six short story collections, and two non-fiction works. Additional works, including three novels, four short story collections, and three non-fiction works, were published posthumously. Many of his works are considered classics of American literature.\n", "\n", "Title: Dengeki Novel Prize\n", "Text: The Dengeki Novel Prize (電撃小説大賞 , Dengeki Shōsetsu Taishō ) is a literary award handed out annually (since 1994) by the Japanese publisher ASCII Media Works (formerly MediaWorks) for their Dengeki Bunko light novel imprint. The contest has discovered many popular and successful light novelists, like Kouhei Kadono and Yashichiro Takahashi. Originally called the Dengeki Game Novel Prize, the name was changed in 2003. The main Dengeki Novel Prize awards consist of the Grand Prize (¥3 million), Gold Prize (¥1 million) and Silver Prize (¥500,000). In addition to the money received, the winning novelists get their work published under Dengeki Bunko with the addition of an artist for the illustrated aspects of the light novels. However, if an entry is awarded the Media Works Bunko Prize, the winning novel will be published under ASCII Media Works' Media Works Bunko imprint, along with the author winning ¥1 million. Often, the name of the novel series is changed from what it was originally titled when it won the prize. There are over 5,000 submissions annually since 2011, and it is considered the largest prize for light novels.\n", "\n", "Title: Center for Fiction First Novel Prize\n", "Text: The Center for Fiction's First Novel Prize is an annual award presented by The Center for Fiction, a non-profit organization in New York City, for the best debut novel. From 2006 to 2011, it was called the John Sargent, Sr. First Novel Prize in honor of John Turner Sargent, Sr., and, from 2011 to 2014, the Flaherty-Dunnan First Novel Prize, named after Center for Fiction board member Nancy Dunnan and her journalist father Ray W. Flaherty.\n", "\n", "Title: Viet Thanh Nguyen\n", "Text: Viet Thanh Nguyen (born March 13, 1971) is a Vietnamese American novelist. He is the Aerol Arnold Chair of English and Professor of English and American Studies and Ethnicity at the University of Southern California. Nguyen's debut novel, \"The Sympathizer\", won the 2016 Pulitzer Prize for Fiction among other accolades, including the Dayton Literary Peace Prize, the Center for Fiction First Novel Prize, the Carnegie Medal for Excellence in Fiction from the American Library Association, the Edgar Award for Best First Novel from an American Author from the Mystery Writers of America, and the Asian/Pacific American Award for Literature in Fiction from the Asian/Pacific American Librarians Association.\n", "\n", "Title: Nida Jay\n", "Text: Nida Jay (born September 2, 1985) is a Pakistani novelist who writes in the English language. She is the recipient of numerous international awards, amongst them the Dunnen First Novel Prize. The debut novel \"Heart of Eternity\" published by Mirador has gained world-wide plaudits and recognition making Jay an influential name in philosophical and religious literature. Jay is a Fellow of the Royal Society of Literature and is also a member of the Stanford University vibrant group of literary scholars\n", "\n", "Title: Media Works Bunko\n", "Text: Media Works Bunko (メディアワークス文庫 , Media Wākusu Bunko ) is a publishing imprint affiliated with the Japanese publishing company ASCII Media Works. It was established on December 16, 2009 with the publication of eight novels, and is a mainstream novel imprint aimed at a general audience. The imprint is an extension of ASCII Media Works's Dengeki Bunko imprint which publishes light novels. Authors who have moved on from light novels, even ones previously published under Dengeki Bunko, also are published under Media Works Bunko. Winners of the Media Works Bunko Prize in ASCII Media Works' Dengeki Novel Prize annual contest are published on this imprint, along with winning 500,000 yen. The first two winners of the prize in the sixteenth Dengeki Novel Prize held in 2009 were Mado Nozaki, for \"(Ei) Amrita\", and Kaoru Arima, for \"Taiyō no Akubi\".\n", "\n", "Question: Which contest in California pays homage to an American novelist that won the Novel Prize in Literature in 1954?\n", "\n", "Answer:\n", "Predictions: The International Imitation Hemingway Competition\n", "Solutions: The Bad Hemingway Contest\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Cardiant\n", "Text: Cardiant is a Finnish heavy metal band. It was established in city of Hämeenlinna in 2000, but most of band members have been replaced and the current assembly has been working since 2008. In the early years, the band recorded several demos until the it signed a contract with the record company Underground Symphony. The first album, Midday Moon, was released in 2005, but the record company did not released it in Europe. However, other record company, Marquee/Avalon, released it in Japan.\n", "\n", "Title: Gallo Record Company\n", "Text: Gallo Record Company is the largest (and oldest independent) record label in South Africa. It is based in Johannesburg, South Africa, and is owned by Times Media Group (formerly Johnnic Communications and Avusa). The current Gallo Record Company is a hybrid of two rival South African record labels between the 1940s and 1980s: the original Gallo Africa (1926–85) and G.R.C. (Gramophone Record Company, 1939–85). In 1985 Gallo Africa acquired G.R.C.; as a result, Gallo Africa became known as \"Gallo-GRC\". Five years after the acquisition, the company was renamed \"Gallo Record Company\".\n", "\n", "Title: Hjärtats trakt\n", "Text: Hjärtats trakt was released on 20 April 1993 and is a compilation album from Swedish pop artist Per Gessle. The album includes songs taken from Gessle's solo albums \"Per Gessle\" and \"Scener\". It was also released under license by the British record company Pickwick and it is the only Gessle album released by another label than EMI. In 1998 the album was re-released by the Dutch record company Disky Communications B.V. which is a subsidiary of EMI.\n", "\n", "Title: Interscope Records\n", "Text: Interscope Records is an American major record label. An imprint of Interscope Geffen A&M Records, its parent company is Universal Music Group, a subsidiary of Vivendi S.A.\n", "\n", "Title: Music West Records\n", "Text: Music West Records was an independent record company founded by Allan Kaplan on December 1985 in San Rafael, California. The company was initially formed to promote Ray Lynch. During its run, artists released under the record company included Jim Chappell, Kenneth Nash, Chris Spheeris, and Øystein Sevåg. According to Gary Chappell, the manufacturer for Music West, the artists originated independently, claiming that the company's idea \"has a statement that comes directly from the\n", "\n", "Title: Love Incredible\n", "Text: \"Love Incredible\" is a song by Norwegian DJ and record producer Cashmere Cat, featuring vocals by Cuban-American singer Camila Cabello. It was released on 17 February 2017 through Interscope and Mad Love as the third single from his debut album, \"9\".\n", "\n", "Title: Incredible Connection\n", "Text: Incredible Connection (Pty) Ltd is the largest consumer electronics and IT retailer in South Africa. On 15 December 1998, Incredible Connection was acquired by Connection Group Holdings Limited and now operates as subsidiary of that company, itself a subsidiary of JD Group Limited. As of 2005, Incredible Connection has 34 retail outlets in South Africa, and in 2002 it was reported to hold 45% of the IT retail market in the country.\n", "\n", "Title: High Octane Cult\n", "Text: High Octane Cult is a United States and Japan greatest hits compilation featuring every single The Cult had released at the time, with the additional \"Beauty's on the Street\" and \"In the Clouds\". It was released by The Cult's then record company Beggars Banquet Records without The Cult's participation. In the years since its release, singer Ian Astbury and guitarist Billy Duffy have occasionally been vocal about their dislike of this release, with Astbury calling it \"sad\" on their official website in 2006. Beggars Banquet had planned on using handmade drawings by Ian Astbury for the album's artwork, but when the drawings were lost, the record company subsequently replaced it with less than stellar car photos, and the band photo from The Cult's \"Sonic Temple\" record was used in the jacket sleeve, along with a short bio about the band, which guitarist Billy Duffy publicly expressed his disapproval about.\n", "\n", "Title: Motown\n", "Text: Motown is an American record company. The record company was founded by Berry Gordy Jr. as Tamla Records on January 12, 1959, and was incorporated as Motown Record Corporation on April 14, 1960, in Detroit, Michigan. The name, a portmanteau of \"motor\" and \"town\", has also become a nickname for Detroit. Motown played an important role in the racial integration of popular music as an African American-owned record label that achieved significant crossover success. In the 1960s, Motown and its subsidiary labels (including Tamla Motown, the brand used outside the US) were the most successful proponents of what came to be known as the Motown Sound, a style of soul music with a distinct pop influence. During the 1960s, Motown achieved spectacular success for a small record company: 79 records in the Top Ten of the \"Billboard\" Hot 100 record chart between 1960 and 1969.\n", "\n", "Title: American Record Corporation\n", "Text: American Record Corporation (ARC), also referred to as American Record Company, American Recording Corporation, or (erroneously) as ARC Records, was an American record company. It resulted from the merger in 1929 of three companies: the Cameo Record Corporation (which owned Cameo, Lincoln and Romeo Records), the Pathé Phonograph and Radio Corporation (which owned Actuelle, Pathé, and Perfect), and the Plaza Music Company (which owned Banner, Domino, Jewel, Oriole, and Regal).\n", "\n", "Question: What is the subsidiary of the record company who released \"Love Incredible?\"\n", "\n", "Answer:\n", "Predictions: Universal Music Group\n", "Solutions: Vivendi S.A.\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: Beer in South Korea\n", "Text: Beer, called maekju (맥주 ; 麥酒 ) in Korean, was first introduced to Korea in the early 20th century. Seoul's first beer brewery opened in 1908. Two current major breweries date back to the 1920s. The third brewery established in Korea, Jinro Coors Brewery, was founded in the 1990s. It was later acquired by Oriental Breweries (OB). Hite Breweries's former name was Chosun Breweries, which was established in 1933. The company changed their name to Hite Breweries in 1998. OB Breweries established as Showa Kirin Breweries in 1933. The company changed their name to OB Breweries in 1995.\n", "\n", "Title: Namibia Breweries Limited\n", "Text: Namibia Breweries Limited (NBL) is a Namibian brewery founded in 1920 when Carl List and Hermann Ohlthaver acquired four small breweries with financial difficulties. The breweries were merged under the name South West Breweries Limited (SWB). SWB changed its name to Namibia Breweries Limited when Namibia gained independence on March 21, 1990. Ohlthaver & List Group of Companies are still the majority shareholder.\n", "\n", "Title: List of breweries in California\n", "Text: This list of breweries in California, both current and defunct, includes both microbreweries and larger industrial scale breweries. Brewing companies range widely in the volume and variety of beer produced, ranging from small breweries to massive multinational conglomerates. Since 1983, California has allowed breweries to sell beer on their premises, giving rise to numerous brewpubs and microbreweries.\n", "\n", "Title: Brouwerij 't IJ\n", "Text: Brouwerij 't IJ (] ; English: The IJ Brewery) is a small brewery in Amsterdam, Netherlands. It is located in a former bath house named \"Funen\", next to the De Gooyer windmill. The brewery was opened by Kaspar Peterson, a former musician, in October 1985 and was one of several small breweries that opened in cities around the Netherlands in response to consumers' dissatisfaction with beer brewed by the larger companies. It brews eight standard beers and three seasonal beers, besides limited edition beers.\n", "\n", "Title: Microbrewery\n", "Text: A microbrewery or craft brewery is a brewery that produces small amounts of beer (or sometimes root beer), typically much smaller than large-scale corporate breweries, and is independently owned. Such breweries are generally characterized by their emphasis on quality, flavour and brewing technique.\n", "\n", "Title: List of breweries and wineries in South Dakota\n", "Text: This is list of breweries in South Dakota. South Dakota is one of 14 U.S. states that forbids small breweries from directly distributing beer products. Small breweries are required to use a distributor, per South Dakota law.\n", "\n", "Title: Beer by region\n", "Text: This is a list of articles and categories dealing with beer by region, including breweries and brewing in general. Beer is the world's most widely consumed alcoholic beverage, and is the third-most popular drink overall, after water and tea. It is thought by some to be the oldest fermented beverage. A brewery is a dedicated building for the making of beer, though beer can be made at home, and has been for much of beer's history. A company that makes beer is called either a brewery or a brewing company. The diversity of size in breweries is matched by the diversity of processes, degrees of automation, and kinds of beer produced in breweries. A brewery is typically divided into distinct sections, with each section reserved for one part of the brewing process.\n", "\n", "Title: List of microbreweries\n", "Text: This is a list of notable microbreweries. A microbrewery is a brewery which produces a limited amount of beer. The qualifications to be classified as a microbrewery vary by country. The term \"microbrewery\" originated in the United Kingdom in the late 1970s to describe the new generation of small breweries which focused on producing traditional cask ale. The first successful example of this approach was Litchborough Brewery founded by Bill Urquhart in 1975 in the Northamptonshire village of the same name. Although originally \"microbrewery\" was used in relation to the size of breweries, it gradually came to reflect an alternative attitude and approach to brewing flexibility, adaptability, experimentation, and customer service. The term and trend spread to the United States in the 1980s, where it eventually was used as a designation of breweries that produce fewer than 15,000 U.S. beer barrels (1,800,000 liters) (475,000 U.S. gallons) annually.\n", "\n", "Title: Stone Brewing Co.\n", "Text: Stone Brewing is a brewery headquartered in Escondido, California, USA. Founded in 1996 in San Marcos, California, it is the largest brewery in Southern California. Based on 2016 sales volume it is the ninth largest craft brewery in the United States.\n", "\n", "Title: Beer Wars\n", "Text: Beer Wars is a 2009 documentary film about the American beer industry. In particular, it covers the differences between large corporate breweries, namely Anheuser-Busch, the Miller Brewing Company, and the Coors Brewing Company opposed to smaller breweries like Dogfish Head Brewery, Moonshot 69, Yuengling, Stone Brewing Co., and other producers of craft beer. Also covered is how advertising and lobbyists are used to control the beer market, implying that these things harm competition and consumer choice.\n", "\n", "Question: Beer Wars covers the differences between large corporate breweries, and small breweries, such as what brewery that is headquartered in Escondido, california?\n", "\n", "Answer:\n", "Predictions: Stone Brewing\n", "Solutions: Stone Brewing\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Muhammad Ali vs. Jimmy Ellis\n", "Text: Muhammad Ali and Jimmy Ellis fought each other in a boxing match at the Astrodome in Houston on July 26, 1971. Ali won the bout through a technical knockout when the referee stopped the fight in the twelfth round. This was Ali's first boxing match after Fight of the Century.\n", "\n", "Title: Cassius Clay vs. Don Warner\n", "Text: Cassius Clay (soon Muhammad Ali) fought a ten-round boxing match with Don Warner in Miami on February 28, 1962. Clay won the fight through a technical knockout after the referee stopped the fight in the fourth round.Warner would later serve as a sparring partner for Joe Frazier.\n", "\n", "Title: Fight of the Century\n", "Text: The Fight of the Century (also known as The Fight) is the title boxing writers and historians have given to the boxing match between WBC/WBA heavyweight champion Joe Frazier (26–0, 23 KOs) and Ring magazine/lineal heavyweight champion\n", "\n", "Title: George Chuvalo\n", "Text: George Louis Chuvalo, CM (born September 12, 1937) is a retired Canadian professional boxer who was a five-time Canadian heavyweight champion, and two-time world heavyweight title challenger. Chuvalo, who is considered by many to have one of the best chins in boxing history, was never knocked down in his amateur career or his 93-fight professional career and was ranked #4 on ESPN's greatest chin in boxing history list. Chuvalo lost to Hall of Fame heavyweights such as Floyd Patterson, Muhammad Ali, Joe Frazier and George Foreman, but was credited for his spirited performances. He did defeat top contenders such as Yvon Durelle, Doug Jones, Jerry Quarry and Cleveland Williams. He fought for the world title twice, losing a controversial decision to Ernie Terrell and another decision in his first fight with Ali.\n", "\n", "Title: Thrilla in Manila\n", "Text: The Thrilla in Manila was the third and final boxing match between Muhammad Ali and Joe Frazier. It was contested in 1975 for the heavyweight championship of the world at the Philippine Coliseum in Cubao, Quezon City, Philippines, on Wednesday, October 1. The venue was renamed from Araneta Coliseum, specifically for the match. Ali won by technical knockout (TKO) after Frazier's chief second, Eddie Futch, conceded the fight prior to the 15th round. The contest's name is derived from the frequent rhyming boast made by Ali that the fight would be a \"killa and a thrilla and a chilla, when I get that gorilla in Manila.\"\n", "\n", "Title: Ali (film)\n", "Text: Ali is a 2001 American biographical sports drama film written, produced and directed by Michael Mann. The film focuses on ten years in the life of the boxer Muhammad Ali, played by Will Smith, from 1964 to 1974, featuring his capture of the heavyweight title from Sonny Liston, his conversion to Islam, criticism of the Vietnam War, and banishment from boxing, his return to fight Joe Frazier in 1971, and, finally, his reclaiming the title from George Foreman in the Rumble in the Jungle fight of 1974. It also touches on the great social and political upheaval in the United States following the assassinations of Malcolm X and Martin Luther King, Jr.\n", "\n", "Title: Joe Frazier's Gym\n", "Text: Joe Frazier's Gym was a training facility owned by American professional boxer, Joe Frazier. Frazier trained at the gym while preparing for his 1971 Fight of the Century against Muhammed Ali. \n", "\n", "Title: Fight of the Century (disambiguation)\n", "Text: Fight of the Century usually refers to the 1971 boxing match between Muhammad Ali and Joe Frazier.\n", "\n", "Title: Bob Foster (boxer)\n", "Text: Robert Lloyd \"Bob\" Foster (December 15, 1938 – November 21, 2015) was an American professional boxer who fought as a light heavyweight and heavyweight. Known as \"The Deputy Sheriff\", Foster was one of the greatest light heavyweight champions in boxing history. He won the world light heavyweight title from Dick Tiger in 1968 via fourth-round knockout, and went on to defend his crown fourteen times in total from 1968 to 1974. Foster challenged heavyweight kings Joe Frazier and Muhammad Ali during his career, but was knocked out by both fighters (the fight with Ali was not for a world heavyweight title, but for the regional NABF version).\n", "\n", "Title: Muhammad Ali vs. Joe Frazier II\n", "Text: Super Fight II was a non-title boxing match between Muhammad Ali and Joe Frazier. The second of the three Ali–Frazier bouts, it took place at Madison Square Garden in New York City on January 28, 1974. Ali was a slight favorite to win, and did by a unanimous decision.\n", "\n", "Question: Who did Muhummad Ali fight next, in Houston, after the so-called Fight of the Century with Joe Frazier?\n", "\n", "Answer:\n", "Predictions: Jimmy Ellis\n", "Solutions: Jimmy Ellis\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: The Pod\n", "Text: The Pod is the second studio album by American rock band Ween, released on September 20, 1991 by Shimmy Disc. The album takes its name from the band's apartment where the album was recorded, which the band nicknamed \"The Pod\". The album's cover art is a takeoff of the 1975 \"The Best of Leonard Cohen\" cover; Ween simply positioned a photo of Mean Ween's head (wearing a \"nitrous oxide powered bong\" which is sometimes mistaken for a \"Scotchgard bong\") over Cohen's cover art, and did alterations to the title and other graphics. The copy of the Leonard Cohen record that Ween used had purportedly belonged to Dean Ween's mother, Eileen Ween. \"The Pod\", according to Ween lore, was written under the influence of Scotchgard, but this was later refuted by Gene and Dean themselves as being \"the most slime-bag thing we could think of\". \"The Pod\" has since been remastered and reissued by Elektra Records, after the relative success of Ween albums such as \"Pure Guava\" (1992) and \"Chocolate and Cheese\" (1994).\n", "\n", "Title: The Chronicles of Life and Death\n", "Text: The Chronicles of Life and Death is the third studio album by American pop punk band Good Charlotte, released on October 5, 2004, through Daylight Records. The album was released with two different versions: a \"Life\" and a \"Death\" version which came with different cover art (designed by guitarist Billy Martin) and a special bonus track. There is also a Japanese version that has a different cover art as well as the special bonus tracks from both the \"Life\" and \"Death\" versions, including the hidden track \"Wounded\" at the end of the album. \"The Chronicles of Life and Death\" is the only album to feature Chris Wilson on drums.\n", "\n", "Title: Mind Tricks\n", "Text: Mind Tricks is the third full-length studio album by the Italian melodic death metal band Disarmonia Mundi, released on June 12, 2006 by Scarlet Records. This album again features Björn \"Speed\" Strid on vocals, but this time without their bassist Mirco Andreis, who decided to leave the band to concentrate on his career as a video clip director. Mirco directed the video for the song \"Celestial Furnace\", but this time did not appear in the video. The album features a Pantera cover version of the song, \"Mouth for War\". The Japanese release of the album includes a bonus track from a 2002 demo entitled, \"Moon of Glass\". The Korean release included a bonus track entitled \"Chester\". The cover art features a manipulated image from the 2005 film \"Sin City\" featuring actress Makenzie Vega as Nancy Callahan.\n", "\n", "Title: Speed of Sound (song)\n", "Text: \"Speed of Sound\" is a song by British rock band Coldplay. It was written by all members of the band for their third studio album, \"X&Y\" (2005). Built around a piano riff, the song builds into a huge, synthesiser-heavy chorus. It was released by Parlophone Records as the lead single from the album. \"Speed of Sound\" was released in the US on 18 April 2005, and then made its radio premiere on BBC Radio 1 with Lamacq on the day of the release on 19 April. The single was pressed with two B-sides: \"Things I Don't Understand\" and \"Proof\". The song premiered in the UK on 23 May.\n", "\n", "Title: Mrs. Washington\n", "Text: \"Mrs. Washington\" is a song written and performed by Gigolo Aunts and the title song from their 1993 and 1994 singles. The song also appears on the album, \"Flippin' Out\". The August 1993 7\" single (catalog number: SM1 or 7SM1) includes a cover of \"Serious Drugs\", a 1992 single by BMX Bandits later included on their 1993 album, \"Life Goes On\". That 1993 single was the first in a series of five releases by various bands on Fire Records under the Spawning Monsters moniker. The April 1994 7\" single (catalog number: blaze68) and CD single (catalog number: blaze68cd) include a cover of \"Ask\", a 1986 single by the Smiths that later appeared on their 1987 albums, \"Louder Than Bombs\" (US) and \"The World Won't Listen\" (UK). The 12\" single includes a cover of \"Can You Get to That\" by Funkadelic, a song from their 1971 album, \"Maggot Brain\". Both the 12\" single and the CD single include a cover of \"Winsor Dam\", a 1991 recording by Big Dipper that did not receive its formal release until the 2008 compilation album, \"\". Note that while both the 12\" single and CD single attribute the writing credits for \"Winsor Dam\" to Goffrier/Oliphant/Michener/Wallik, other sources identify the writer of the song as Big Dipper guitarist, Gary Waleik. The 1994 single entered the UK singles charts on April 23, 1994, spending only one week there. The cover art of the 1994 7\" single, 12\" single, and CD single features Chloë Sevigny. The photo appears to be from the same session as the photo on the cover of the Full-On Bloom EP.\n", "\n", "Title: Lawless Darkness\n", "Text: Lawless Darkness is the fourth studio album by Swedish black metal band Watain, released through Season of Mist, on 7 June 2010. The cover art was made by Zbigniew M. Bielak, who also painted \"The Wild Hunt\" cover art. The album sold around 1,000 copies in the United States in the first week of its release, reaching no. 42 on the Top New Artist Albums (Heatseekers) chart. The single \"Reaping Death\" was distributed in their home country of Sweden in the Sweden Rock magazine, and was certified gold in the band's home country on April 21 by the International Federation of the Phonographic Industry for sales in excess of 10,000 copies. The album received very positive reviews from music critics, and in 2011 the band were awarded the Swedish Grammi for 'Best Hard Rock' album for \"Lawless Darkness\".\n", "\n", "Title: Black Bastards\n", "Text: Black Bastards (or Bl_ck B_st_rds) is the second and final studio album by KMD (a rap trio featuring an early alias of MF DOOM), completed in 1993 and eventually released in 2001 through ReadyRock. Initially, the album was scheduled for release in 1993, but Elektra Records canceled the album, reportedly due to the controversial cover art, which shows a Sambo figure being lynched, and its black nationalist, Five-Percenter lyrics. However, the album displayed no obvious Five-Percenter rhetoric, yet the project was racially candid, as demonstrated by the album title, its cover art, and the sample collage intro. Zev Love X's brother DJ Subroc was killed when he was struck by a car shortly before the album was completed.\n", "\n", "Title: X&Y\n", "Text: X&Y (stylized as X & Y) is the third studio album by the British rock band Coldplay. It was released on 6 June 2005 by Parlophone in the United Kingdom, and a day later by Capitol Records in the United States. The album was produced by Coldplay and producer Danton Supple. It is noted for its troubled and urgent development, with producer Ken Nelson having originally been tasked with producing much of the album; however, many songs written during his sessions were discarded owing to the band's dissatisfaction with them. The album's cover art is a combination of colours and blocks, which is a representation of the Baudot code.\n", "\n", "Title: LAX (album)\n", "Text: LAX is the 3rd studio album by American rapper The Game. It was released on August 26, 2008, by Geffen Records. Recording sessions took place from 2007 to 2008, with the production that were contributed by Cool & Dre, Kanye West, Scott Storch, Nottz, Hi-Tek, J.R. Rotem and JellyRoll; as well as guest appearances from Chrisette Michele, Common, Ice Cube, Keyshia Cole, Ludacris, Nas, Ne-Yo, Raekwon, Raheem DeVaughn, Travis Barker, Bilal and Lil Wayne. The album was supported by four singles: \"Game's Pain\" featuring Keyshia Cole, \"Dope Boys\" featuring Travis Barker, \"My Life (The Game song)\" featuring Lil Wayne, and \"Camera Phone (song)\" featuring Ne-Yo. The album was released with two different cases such as one cover art for the deluxe version with Game looking at the camera with his bandanna in his hand, and the cover art for another was with him sitting on a couch smoking a blunt.\n", "\n", "Title: Powertrippin'\n", "Text: Powertrippin' is the third studio album released by Scottish heavy metal band The Almighty. It was released in the United Kingdom in 1993 by Polydor Records and was the band's last studio album for that label. It was The Almighty's first album with new guitarist Pete Friesen who replaced founding guitarist Tantrum who had left the band in 1992. Friesen contributed to the songwriting and was a major part of the new sound presented on this album, introducing a heavier, riff based grunge sound compared to the punk leanings of earlier efforts. The subject of the cover art is taken directly from a psychedelic concert poster for MC5 designed by the legendary poster artist Gary Grimshaw in 1966, which is tracing of Life magazine cover from December 6, 1954, Jet Age Man by Ralph Morse.\n", "\n", "Question: What is represented on the cover art of the studio album that includes the song \"Speed of Sound\"?\n", "\n", "Answer:\n", "Predictions: The cover art of the studio album \"X&Y,\" which includes the song \"Speed of Sound,\" represents a combination of colors and blocks, symbolizing the Baudot code.\n", "Solutions: Baudot code\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: František Čermák\n", "Text: František Čermák (born 14 November 1976) is a Czech professional tennis player. He has won 31 doubles titles on the ATP Tour and has been a finalist 24 times. He achieved a career-high doubles ranking of World No. 14 in February 2010. He usually plays doubles with Filip Polášek. In mixed doubles, Čermák and partner Lucie Hradecká reached the final of the 2013 Australian Open and won the 2013 French Open. In singles, Čermák won 1 Challenger title and 10 Futures titles, reaching a career-high singles ranking of World No. 201 in October 2003.\n", "\n", "Title: Oslo Open\n", "Text: The Oslo Open was a women's professional tennis tournament held in Oslo, Norway. The event was part of the Women's Tennis Association (WTA) Tour and was played only once, in 1991. It was classed as a Tier V event, and it was competed on an indoor carpet surface. Catarina Lindqvist won the singles competition and Claudia Kohde-Kilsch and Silke Meier won the doubles; Raffaella Reggi finished runner-up in both events. There was a total prize money on offer of US$100,000.\n", "\n", "Title: Albert Burke (tennis)\n", "Text: Albert Burke (1901 – 1958) was an Irish professional tennis player based in France. Albert Burke was the son of Thomas Burke. Thomas Burke was a professional tennis player when professional tennis began in the late 19th century and Albert Burke's brother Edmund Burke was also a professional tennis player . Albert Burke won the Bristol Cup in France (the top professional tournament in the world in the 1920s), in 1924 and 1925 (beating Roman Najuch in both finals) . He was also losing finalist in the Bristol Cup in 1926, 1929 and 1931 (losing all three finals to Karel Kozeluh) . Burke finished second in the 1930 French Pro Championship round robin (Karel Kozeluh was first) . At the US Pro Tennis Championships Burke was a quarter finalist in 1931 (losing to Howard Kinsey) and 1932 (losing to Bill Tilden) . At the Wembley Championships Burke lost in the quarter finals in 1935 (losing to Ellsworth Vines) .\n", "\n", "Title: Nataša Zorić\n", "Text: Nataša Zorić (Serbian Cyrillic: Наташа Зорић; born 27 November 1989) is a Serbian tennis player. Zorić has reached one Women's Tennis Association WTA final, in doubles, reaching the final of the 2008 Gastein Ladies with Sesil Karatantcheva, where they lost to Czechs Andrea Hlaváčková and Lucie Hradecká 6-3, 6-3. Her highest singles ranking so far is World No. 388, which she attained on 6 October 2008, and No. 218 in doubles also on October 6, 2008. Zorić has won four International Tennis Federation ITF singles titles, and twelve ITF doubles titles in her career so far. She lives in Palić and enjoys clay courts.\n", "\n", "Title: Conor Niland\n", "Text: Conor Niland (born 19 September 1981) is a former Irish professional tennis player. He was born in Birmingham, England, and grew up in Limerick, Ireland. He attended St. Nessan's National School in Mungret, Co. Limerick, before moving on to Crescent College Comprehensive in Dooradoyle, Co. Limerick. He was the highest ranked Irish tennis player during his career. He played for the Ireland Davis Cup team from 2000 to 2012. He officially announced his retirement from tennis on 12 April 2012 due to a recurring hip injury. In a statement Niland said: \"I am today sadly announcing my retirement from professional tennis. I have been suffering from labral tears in both hip cartilages and this has resulted in pain and restricted movement for the past nine months.\"\n", "\n", "Title: Andrea Hlaváčková\n", "Text: Andrea Hlaváčková (] ; born 10 August 1986) is a professional tennis player from the Czech Republic. Her highest singles ranking is world No. 58, which she reached in September 2012, and her highest doubles ranking is No. 3, reached on 22 October 2012. In her career, Hlaváčková has won 22 WTA doubles titles, as well as 19 ITF doubles and eight ITF singles titles. She has won two Grand Slam doubles titles, the 2011 French Open and the 2013 US Open, both times partnered with Lucie Hradecká. The pair are also the 2012 Olympic silver medallists. Hlaváčková was part of the winning Czech team in Fed Cup 2012 and also won the mixed doubles title at the 2013 US Open paired with Max Mirnyi.\n", "\n", "Title: Elena Pampoulova\n", "Text: Elena Pampoulova (also Elena Wagner, Elena Pampulova-Bergomi, Bulgarian: Елена Пампулова , born 17 May 1972) is a retired professional tennis player from Bulgaria. She competed for Fed Cup of the International Tennis Federation (ITF). Elena's first tennis coach was her own mother, Bulgarian tennis player Lubka Radkova. Elena's father, Emilian Pampoulov, is also a tennis player.\n", "\n", "Title: Lucie Hradecká\n", "Text: Lucie Hradecká (] ; born 21 May 1985 in Prague) is a professional tennis player from the Czech Republic. In her career, Hradecká has won 19 WTA doubles titles, and two Grand Slam titles, the 2011 French Open and the 2013 US Open, partnered both times by fellow Czech Andrea Hlaváčková. The pair are also the 2012 Olympic silver medallists in doubles. She has also won a mixed doubles Grand Slam title, the 2013 French Open with František Čermák. Her biggest singles career highlight to date was defeating former world number one Ana Ivanovic in the first round of the 2015 Australian Open.\n", "\n", "Title: Serena Williams\n", "Text: Serena Jameka Williams (born September 26, 1981) is an American professional tennis player. The Women's Tennis Association (WTA) has ranked her world No. 1 in singles on eight occasions, from 2002 to 2017. She became the world No. 1 for the first time on July 8, 2002. On the sixth occasion, she held the ranking for 186 consecutive weeks, tying the record set by Steffi Graf for the most consecutive weeks as world No. 1 by a female tennis player. In total, she has been world No. 1 for 319 weeks, which ranks her third in the Open Era among female tennis players. Some commentators, players and sports writers regard her as the greatest female tennis player of all time.\n", "\n", "Title: Raffaella Reggi\n", "Text: Raffaella Reggi (born 27 November 1965; ] ) is a former professional tennis player from Italy.\n", "\n", "Question: Which professional tennis player was born first, Lucie Hradecká or Raffaella Reggi?\n", "\n", "Answer:\n", "Predictions: Raffaella Reggi\n", "Solutions: Raffaella Reggi\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Warriparinga\n", "Text: Warriparinga (meaning \"Windy Place\" in the local Kaurna language) is a nature reserve comprising 3.5 ha in the metropolitan suburb of Bedford Park, in the southern suburbs of Adelaide, South Australia. It has historical, cultural and environmental significance as a traditional Kaurna ceremonial meeting place and as a site of early European settlement. Also known as Fairford, Laffer's Triangle and the Sturt Triangle, Warriparinga is bordered by Marion Road, Sturt Road and South Road, and is traversed by the Sturt River as it exists from Sturt Gorge to travel west across the Adelaide Plains.\n", "\n", "Title: President of the Queen's Privy Council for Canada\n", "Text: In the Canadian cabinet, the President of The Queen's Privy Council for Canada (French: \"President du Conseil privé de la Reine pour le Canada\" ) is nominally in charge of the Privy Council Office. The President of the Privy Council also has the largely ceremonial duty of presiding over meetings of the Queen's Privy Council for Canada, a body which only convenes in full for affairs of state such as the accession of a new Sovereign or the marriage of the Prince of Wales or heir presumptive to the Throne (see Monarchy in Canada). Accordingly, the last time the President of the Privy Council had to preside over a meeting of the Privy Council was in 1981 on the occasion of Charles, Prince of Wales' engagement to Lady Diana Spencer. It is the equivalent of the office of Lord President of the Council in the United Kingdom.\n", "\n", "Title: Great Hall of the People\n", "Text: The Great Hall of the People is a state building located at the western edge of Tiananmen Square in Beijing. It is used for legislative and ceremonial activities by the People's Republic of China (PRC) government and the ruling Communist Party of China. The Great Hall functions as the meeting place for the full sessions of the Chinese parliament, the National People's Congress (NPC), which occurs every year during March along with the national session of the Chinese People's Political Consultative Conference (CPPCC), a political advisory body. It is also the meeting place of the National Congress of the Communist Party of China, which, since 1982, has occurred once every five years.\n", "\n", "Title: Accession Council\n", "Text: In the United Kingdom, the Accession Council is a ceremonial body which assembles in St James's Palace upon the death of a monarch (Demise of the Crown), to formally proclaim the accession of his or her successor to the throne. Under the terms of the Act of Settlement 1701, a new monarch succeeds automatically. The proclamation confirms by name the identity of the heir who has succeeded.\n", "\n", "Title: Grange Hall (Murphysboro, Illinois)\n", "Text: The Grange Hall in Somerset Township, Jackson County, Illinois, is the historic meeting place of Somerset Township's chapter of The Grange. Built in 1912, the building was Somerset Grange #1553's second meeting hall; the first building was built in 1876 and burned down in 1909. The red brick building was built by contractor W. A. Pitman in the Commercial style. The Grange Hall served as a meeting place for local farmers to discuss agricultural affairs and propose farm policy to legislators. The National Farmers Union's newspaper, the \"Union Farmer\", was published from the Somerset Grange Hall until 1914. The building also served as a local social center and hosted township elections, club meetings, and community events. The hall was rehabilitated in 1988; it still serves as a township polling place.\n", "\n", "Title: Mark Masons' Hall, London\n", "Text: Mark Masons' Hall in London is the headquarters of The Grand Lodge of Mark Master Masons of England and Wales, which also controls the Royal Ark Mariner degree. It is located in 86 St James's Street in the central London district of St James's, opposite St James's Palace. While Freemasons' Hall is the headquarters of the United Grand Lodge of England and the Supreme Grand Chapter of Royal Arch Masons of England, Mark Masons' Hall is the home of several other important appendant orders of Freemasonry in England and Wales.\n", "\n", "Title: Crowther Masonic Hall\n", "Text: Crowther Masonic Hall or Freemasons' Hall in Kollam is a part of the Grand Lodge of India and it was a meeting place for many Masonic Lodges in the Quilon(Kollam) area. It is near Kochupilamoodu in Kollam city and has been a Masonic meeting place since 1806. The building is now considered as a historic monument of Freemasonry activities in ancient Travancore area.\n", "\n", "Title: Pollokshields Burgh Hall\n", "Text: The Pollokshields Burgh Hall stands at the edge of Maxwell Park, Glasgow, Scotland. Designed by Henry Edward Clifford and constructed in 17th-century Scottish Baronial style, this was opened in 1890 by Sir John Stirling Maxwell as a Masonic Meeting Place and for the use of the community but served the independent burgh of Pollokshields only until 1891 when the rapidly expanding city swallowed up the area. The hall contained various council offices and a courtroom. It continues to this day as a Masonic meeting place, hence the numerous Masonic symbols in the carvings (especially at the back of the building) and in the stained-glass windows.\n", "\n", "Title: Blackman-Bosworth Store\n", "Text: Blackman-Bosworth Store, also known as Bosworth Store Building, S.N. Bosworth's Cheap Cash Store, David Blackman's Store, and Randolph County Museum, is a historic general store located at Beverly, Randolph County, West Virginia, United States. It consists of the original section, built about 1828, with an addition built in 1894. The original section is a two-story brick building on a cut-stone foundation. In addition to being operated as a general store into the 1920s, the building had short-term use as county courthouse, post office and semi-official meeting place. In 1973, the Randolph County Historical Society purchased the property, and it now serves as the Randolph County Museum and as a meeting place.\n", "\n", "Title: St James's Palace\n", "Text: St James's Palace is the most senior royal palace in the United Kingdom. Located in the City of Westminster, although no longer the principal residence of the monarch, it is the ceremonial meeting place of the Accession Council and the London residence of several members of the royal family.\n", "\n", "Question: What building is opposite the ceremonial meeting place of the Accession Council in the United Kingdom?\n", "\n", "Answer:\n", "Predictions: Mark Masons' Hall\n", "Solutions: Mark Masons' Hall\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Duke Energy Florida\n", "Text: Duke Energy Florida, formerly Florida Power, was the generation, transmission, and distribution sector of Florida Progress Corporation. The company distributed power over much of central and north Florida. Florida Progress merged with Carolina Power & Light in 2000 to form Progress Energy. Progress Energy merged with Duke Energy in 2012. Today the Florida operations operate as Duke Energy Florida.\n", "\n", "Title: Crystal River Energy Complex\n", "Text: The Crystal River Energy Complex consists of five power-generating plants on a 4,700 acre (1,900 hectare) site near the mouth of the Crystal River in Citrus County, Florida. Crystal River 1, 2, 4, and 5 are fossil fuel power plants, while Crystal River 3 is the sole nuclear power plant on the site. The complex was developed in the early 1960s by the Florida Power Corporation and sold to Progress Energy Inc in 2000. Following Progress Energy's merger with Duke Energy in 2012, the facility is owned and operated by Duke Energy.\n", "\n", "Title: Sean Healey\n", "Text: Sean Michael Healey (born 1961) is the chairman and chief executive officer of Affiliated Managers Group, Inc. (NYSE: AMG), a global asset management firm whose affiliates in aggregate managed approximately $638 billion as of March 31, 2015.\n", "\n", "Title: Darrell Crate\n", "Text: Darrell W. Crate (born 1967) is an American investor, private equity manager, and philanthropist. He served as the chief financial officer of Affiliated Managers Group. He is currently a managing principal of Easterly Capital, a private equity firm in Beverly, Massachusetts he founded in 2009.\n", "\n", "Title: Sabal Trail Transmission Pipeline\n", "Text: Sabal Trail Transmission Pipeline is a proposed natural gas pipeline to run from central Alabama through southwest Georgia to Orange County. A minority stake in the venture is owned by NextEra Energy and Duke Energy. The pipeline has been being planned since before 2011. In July 2013 it was announced that Florida Power & Light Company (FPL) jointly awarded its parent corporation, NextEra Energy and Spectra Energy the bid to build the pipeline. In May 2015, Duke Energy bought an interest in the venture. Construction began in September 2016. The pipeline is currently scheduled to be in service by June 2017.\n", "\n", "Title: Duke Energy\n", "Text: Duke Energy, headquartered in Charlotte, North Carolina, is an electric power holding company in the United States, with assets also in Canada and Latin America.\n", "\n", "Title: Crescent Communities\n", "Text: In 1939, Duke Power (now Duke Energy) established a forestry department to manage company land not used for power generation. In 1963 this department became the company South Carolina Land and Timber. As the holdings expanded to include land in North Carolina, the organization was renamed Crescent Land and Timber in 1969. Some of the original land was sold to Crescent Land and Timber by the Singer Corporation. In the mid-1980s the company was renamed Crescent Resources as it began to actively develop residential communities. Crescent Resources began work on its first commercial development, Coliseum Centre, in 1990. As of 1991, Crescent Resources managed 270,000 acres of land. Holdings included part of what became Lake James State Park, which it later sold to the state of North Carolina. Crescent Resources became a separate entity from Duke Energy in 2006 with Duke Energy selling its 49% stake to Morgan Stanley. Crescent Resources filed for bankruptcy in 2009 and has emerged from it separated from the utility company. The company aimed to rebrand itself, renaming itself \"Crescent Communities\" in 2013.\n", "\n", "Title: Progress Energy Inc\n", "Text: Progress Energy, headquartered in Raleigh, North Carolina, is a subsidiary of Duke Energy and prior to its merger with Duke Energy was a Fortune 500 energy company with more than 21,000 megawatts of generation capacity and $9 billion in annual revenues. Progress Energy includes two major electric utilities that serve approximately 3.1 million customers in the Carolinas and Florida. As an independent company, the last chairman and CEO of Progress Energy was William D. Johnson; his predecessor was Robert McGehee, who died on October 9, 2007 at the age of 64 of a stroke while on a business trip to London.\n", "\n", "Title: Affiliated Managers Group\n", "Text: Affiliated Managers Group Inc. is an American international investment management company headquartered in Massachusetts that owns stakes in a number of boutique asset management, hedge fund, and specialized private equity firms.\n", "\n", "Title: Gulfstream Natural Gas Pipeline\n", "Text: Gulfstream Natural Gas Pipeline is a natural gas pipeline that brings gas from Mississippi and Alabama, underwater across the Gulf of Mexico, to Florida. It was owned by Duke Energy, but is now owned by Duke Energy's spin-off company Spectra Energy. Its FERC code is 183. \n", "\n", "Question: Are both Duke Energy and Affiliated Managers Group based in Massachusetts?\n", "\n", "Answer:\n", "Predictions: No, only Affiliated Managers Group is based in Massachusetts; Duke Energy is based in North Carolina.\n", "Solutions: no\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Simone Forti\n", "Text: Simone Forti (born 1935), is an American Italian Postmodern artist, dancer, choreographer, and writer. Since the 1950's, Forti has exhibited, performed, and taught workshops all over the world, including performances at the Louvre in Paris, the Museum of Modern Art in New York, and the J. Paul Getty Museum in Los Angeles. Her innovations in Postmodern dance, including her seminal 1961 body of work, \"Dance Constructions\", along with her contribution to the early Fluxus movement, have influenced many notable artists, including dancer/artist Yvonne Rainer and the Judson Dance Theater in New York. Forti first apprenticed with Anna Halprin in the 1950s and has since worked alongside artists and composers Nam June Paik, Steve Paxton, La Monte Young, Trisha Brown, Charlemagne Palestine, Peter Van Riper, Dan Graham, Yoshi Wada, and Robert Morris, among many others. Forti's published books include \"Handbook in Motion\" (1974, The Press of the Nova Scotia College of Art and Design), \"Angel\" (1978, self-published), and \"Oh Tongue\" (2003, Beyond Baroque Foundation, ed. Fred Dewey). She is currently represented by The Box L.A. in Los Angeles, CA, and has works in the permanent collections of the Museum of Modern Art (MOMA) in New York, the Stedelijk Museum in Amsterdam, the Generali Foundation in Vienna, the Whitney Museum of American Art in New York, and the Moderna Museet in Stockholm.\n", "\n", "Title: Gonçalo Mabunda\n", "Text: Gonçalo Mabunda was born on January 1, 1975 in Maputo, Mozambique. He is an artist and anti-war activist.Mabunda is an internationally acclaimed artist who has had his work exhibited around the world. He has exhibited in important museums such as the Center Pompidou in Paris, the Venice Biennale, the Museum of Art and Design in New York, the Museum Kunst Palast in Dusseldorf, the Hayward Gallery in London, the Mori Art Museum in Tokyo, the Johannesburg Art Gallery and many more.\n", "\n", "Title: Michael Hafftka\n", "Text: Michael Hafftka is an American figurative expressionist painter living in New York City. His work is represented in the permanent collections of a number of museums, including: The Metropolitan Museum of Art, New York Museum of Modern Art, Brooklyn Museum of Art, San Francisco Museum of Modern Art, Carnegie Museum of Art, New York Public Library, McNay Art Museum, Housatonic Museum of Art, Arizona State University Art Museum, National Gallery of Art, and Yeshiva University Museum.\n", "\n", "Title: Kevin Atherton\n", "Text: Kevin Atherton (born 1950) is a Manx artist,based in Ireland since 1999, whose work includes performance, sculpture, film and video, installation and site-related work. Before moving to Ireland with his late wife, the Educationalist Vicky Robinson, Atherton had lived and worked in London for twenty-five years teaching part-time at The Slade School of Fine Art, the Royal College of Art and Middlesex Polytechnic. Most notably he was the Head of Department of 'Alternative Media'at Chelsea College of Art, which later when it merged with 'Print Making' became 'Combined Media'. Arriving in Dublin in 1999 Atherton set about establishing the Fine Art Media Department at the National College of Art and Design (NCAD) writing the BA Fine Art Media pathway and the ground-breaking 'Virtual Realities as a Fine Art Media' MA course. He has exhibited and performed throughout the world including at the Museum of Modern Art San Francisco (SFMOMA), The Museum of Modern Art Vienna (MUMOK) and at Tate Britain. His two-screen video installation 'In Two Minds'(1978-2014) is in the collection of the Irish Museum of Modern Art Dublin.\n", "\n", "Title: Craig Kauffman\n", "Text: Craig Kauffman (March 31, 1932 – May 9, 2010) was an artist who has exhibited since 1951. Kauffman’s primarily abstract paintings and wall relief sculptures are included in over 20 museum collections, including the Museum of Modern Art, the Whitney Museum of American Art, the Tate Modern, the Louisiana Museum of Modern Art, the Art Institute of Chicago, the Los Angeles County Museum of Art, Seattle Art Museum, and the Museum of Contemporary Art, Los Angeles.\n", "\n", "Title: Francis Focer Brown\n", "Text: Francis Focer Brown (1891–1971) was a well-known American Impressionist painter, as well as professor and head of the Fine Arts Department at Ball State University in Muncie, Indiana from 1925–1957, and Director of the Muncie Art Museum. His work was exhibited frequently at the Hoosier Salon- Indiana Artists Annual, Herron School of Art Museum, Ball State University, Indiana State Fair, Indiana Art Club and others. Brown studied With J. Ottis Adams and William Forsyth (artist) at the Herron School of Art; Ball State Teachers College, B.S.; Ohio State University, M.A. Member Indiana AC; Hoosier Salon. He exhibited at the Richmond Art Museum, 1922 (prize); John Herron Art Institute, 1922 (prize); Hoosier Salon, 1922–45 (awards); CMA, 1922–25; PAFA, 1922, 1923. His work is held in collections at John Herron Art Institute; Ball State University; Richmond Art Museum, and in various schools and libraries throughout Indiana. Also known as Francis Brown and Francis F. Brown.\n", "\n", "Title: Stedelijk Museum Amsterdam\n", "Text: The Stedelijk Museum Amsterdam (] ; Municipal Museum Amsterdam), colloquially known as the Stedelijk, is a museum for modern art, contemporary art, and design located in Amsterdam, Netherlands.\n", "\n", "Title: Janne Kyttanen\n", "Text: Janne Kyttanen (born 1974) is a Finnish conceptual artist and designer who is best known for his work in design for 3D printing. He is the founder of Freedom of Creation and the current Creative Director of 3D Systems, an American-based manufacturer of 3D printers. His work been exhibited in numerous museums and galleries, including the Stedelijk Museum, the Museum of Modern Art, and at Design Miami, the global forum for design. He also used to be a professional squash player, having played in two individual world championships and two team championships.\n", "\n", "Title: Merry Alpern\n", "Text: Merry Alpern (born 1955 in New York City) is an American photographer that has been shown in museums and exhibitions around the country including the Whitney Museum of American Art, San Francisco Museum of Modern Art, Museum of Modern Art, National Museum of Women in the Arts and The Museum of Fine Arts, Houston. Her most notable work is her 1993-94 series \"Dirty Windows\", a controversial series in which she took photos of an illegal sex club through a bathroom window in Manhattan near Wall Street. In 1994, the National Endowment for the Arts rejected recommended photography fellowships to Alpern, as well as Barbara DeGenevieve and Andres Serrano. Merry Alpern became one of many artists assaulted by congressional conservatives trying to defund the National Endowment for the Arts because of this series. As a result, museums such as the Museum of Modern Art in New York and San Francisco rushed to exhibit the series. She later produced and exhibited another show called \"Shopping\" which included images from hidden video cameras.\n", "\n", "Title: Tom Friedman (artist)\n", "Text: Tom Friedman (born 1965) is an American conceptual sculptor. Friedman was born in St. Louis, Missouri. He received his BFA in graphic illustration from Washington University in St. Louis in 1988, and an MFA in sculpture from the University of Illinois at Chicago in 1990. As a conceptual artist he works in a variety of mediums including, sculpture, painting, drawing, video, and installation. For over twenty years Friedman has been investigating the viewer/object relationship, and \"the space in between.\" Friedman has held solo exhibitions at the Museum of Modern Art, New York, Yerba Buena Museum of Art, San Francisco, Magasin 3 in Stockholm, Sweden, The New Museum in New York, the Tel Aviv Art Museum, and others. His work can be found in the museum collections of MoMA, Los Angeles Contemporary Art Museum, the Broad Art Museum, the Solomon Guggenheim Museum, The Metropolitan Museum of Art, Museum of Contemporary Art, Chicago, and the Museum of Contemporary Art, Tokyo. He is currently represented by Luhring Augustine Gallery and Stephen Friedman Gallery. He lives and works in Northampton, Massachusetts.\n", "\n", "Question: Janne Kyttanen has had work exhibited at which modern art museum in Amsterdam?\n", "\n", "Answer:\n", "Predictions: Stedelijk Museum\n", "Solutions: Stedelijk Museum Amsterdam\n", "Score: 0.0\n", "Error reason: Computation result is incorrect.Questions: Context: Title: REX American Resources\n", "Text: REX American Resources Corp. (REX; ) is an American producer and retailer of ethanol, distillers grains and natural gas as well as a holding company in energy entities. It was founded in 1980 and is headquartered in Dayton, Ohio. The company has the entire ownership of three affiliated corporations including Rex Radio and Television, Inc., Stereo Town, Inc. and Kelly & Cohen Appliances, Inc. As of 2012, the company has the ownership of 22 national retail stores and invested in five ethanol production entities nationwide. One of the plants the company invested in, One Earth Energy, LLC, has an annual capacity of 100 million gallons of ethanol and 320,000 tons of dried distillers grains. The company exited the retail industry and transferred to energy investment in 2009 with changing the name from Rex Stores Corporation to its current name in the following year.\n", "\n", "Title: World Publishing Company\n", "Text: The World Publishing Company was an American publishing company founded by Alfred H. Cahen. Originally headquartered in Cleveland, the company later added an office in New York City. The company published genre fiction, trade paperbacks, children's literature, nonfiction books, textbooks, Bibles, and dictionaries, primarily from 1940 to 1980. Authors published by World Publishing Company include Ruth Nanda Anshen, Michael Crichton, Simone de Beauvoir, Robert Ludlum, Sam Moskowitz, Ayn Rand, Rex Stout, Gay Talese, and Lin Yutang. The company's Cleveland headquarters were located in the Caxton Building.\n", "\n", "Title: Rex-Acme\n", "Text: Rex, Rex Motorcycles, Rex-Acme, was a motorcycle company which began in Birmingham, England in 1900. Rex soon merged with a Coventry bicycle maker named Allard and then later in 1922 the company merged with Coventry's 'Acme' motorcycle company forming 'Rex Acme'. The company existed until 1933, and, in its heyday, was considered one of the greatest names in the British motorcycle industry.\n", "\n", "Title: Forever Living Products\n", "Text: Forever Living Products International, Inc. (FLPI) is a privately held multi-level marketing (MLM) company based in Scottsdale, Arizona, which manufactures and sells aloe vera-based drinks and bee-derived cosmetics, nutritional supplements, and personal care products. The company was founded in 1978 by CEO Rex Maughan. After acquiring the company Aloe Vera of America by the 1990s, In 2010, the company reported having over 4,000 employees, a network of 9.3 million distributors, and revenue of $1.7 billion.\n", "\n", "Title: Xircom\n", "Text: Xircom, Inc. was based in Thousand Oaks, California, with manufacturing facilities located in Penang & Malaysia and international offices throughout Europe and Asia Pacific. They were one of the first companies to develop network computing products for notebook computers. Products included computer memory cards, LAN adapters, modems, and remote access server products. The company's products enabled notebook users to share information over a network connection. During fiscal 1999, the company introduced 56K modems in the MiniPCI form factor. In September 1999, the company acquired Rex PC Card Organizer product line. During fiscal 2000, the company acquired Omnipoint Technologies, Inc. and Entrega Technologies Inc. Branded products accounted for 65% of fiscal 2000 revenues and OEM products, 35%. In 2001, Intel acquired Xircom and in early 2003 laid off most of Xircom's Thousand Oaks employees.\n", "\n", "Title: Rex Maughan\n", "Text: Rex G. Maughan is the founder, president, and CEO of Forever Living Products, a multi-level marketing program that sells aloe-vera based cosmetics and other personal products. He is also a real-estate investor.\n", "\n", "Title: Graco (baby products)\n", "Text: Graco (pronounced gray-co) is an American baby products company, owned and operated by Newell Brands, now based in Atlanta, Georgia. It was founded in 1942 in Philadelphia, Pennsylvania, by Russell Gray and Robert Cone (hence the name) as Graco Metal Products, a company that fabricated machine and car parts. Rex Thomas (one of two engineers hired to come up with a sustainable product) watched his wife sitting on the porch, rocking their baby in a swing with a string tied to it, while she read a book. Rex went into work the next day and said “why don’t we make an automatic baby swing.” After 18 months of research and development, the Swyngnomatic - the world’s first wind-up, automatic baby swing—was born in 1955, designed by company engineer Dave Saint. In 1987 the company pioneered the invention of the Pack N' Play Portable Playard, the world’s first portable playard (designed by Nate Saint, Dave Saint’s son).\n", "\n", "Title: Rex Records (1912)\n", "Text: Rex Records was a United States based record label owned by the Rex Talking Machine Corporation of Wilmington, Delaware. The company was in business from 1912 through 1919. They issued vertical cut double-sided ten- and 12-inch diameter disc records compatible with the Pathé Records system. They were bought out by Okeh Records. For further details and references see mainspringress.com. That article cites \"1918 issues of 'Talking Machine World' as a specific source for remarks about Rex Records.\n", "\n", "Title: Rexist Party\n", "Text: The Rexist Party (French: \"Parti Rexiste\" ), or simply Rex, was a far-right Catholic, nationalist, authoritarian and corporatist political party active in Belgium from 1935 until 1945. The party was founded by a journalist, Léon Degrelle, and, unlike other fascist parties in the Belgium of the time, advocated Belgian unitarism and royalism. Initially the party ran in both Flanders and Wallonia but never achieved much success outside Wallonia and Brussels. Its name was derived from the Roman Catholic journal and publishing company \"Christus Rex\" (Latin for Christ the King).\n", "\n", "Title: Rex Records (1933)\n", "Text: Rex Records was a United Kingdom-based record label founded in 1933 by the Crystalate Gramophone Record Manufacturing Company, also the parent of British Imperial Records. Rex released their first discs in September 1933, with the initial release bearing a catalogue number of 8000 or 8001. The company was taken over by Decca Records in March 1937. Rex Records were sold at Marks & Spencer's chain stores.\n", "\n", "Question: What company did Rex Maughan aquire?\n", "\n", "Answer:\n", "Predictions: Aloe Vera of America\n", "Solutions: Aloe Vera of America\n", "Score: 1.0\n", "The solution is correct.Questions: Context: Title: Max Charles\n", "Text: Max Charles (born August 18, 2003) is an American teen actor. In addition to his appearance in the 2012 film \"The Three Stooges\", Charles played a young Peter Parker in \"The Amazing Spider-Man\" and had a role in the ABC comedy science fiction series \"The Neighbors\". In 2014, Charles voiced Sherman in DreamWorks Animation's \"Mr. Peabody & Sherman\". He also voices Sherman on \"The Mr. Peabody and Sherman Show\" Netflix Series He also played a recurring role in Disney XD's. \" Lab Rats: Bionic Island\" as Spin. He currently voices Kion on the Disney Junior series \"The Lion Guard,\" and Harvey on the Nickelodeon series \"Harvey Beaks\". He also plays Zack Goodweather on the TV series \"The Strain.\"\n", "\n", "Title: Jonathan Walsh\n", "Text: Jonathan Walsh (born January 14, 1989), nicknamed Jinro, is a retired Swedish professional \"StarCraft 2\" player. He lives in South Korea, and played for Team Liquid in the GOMTV Global Starcraft II League (GSL). Jinro used to live in the oGs (Old Generations) team house, which was due to an agreement between oGs and Team Liquid. With the breakup of oGs, Jinro has found a new house with fellow Team Liquid players TLO, Hero, and Haypro. He plays as Terran. Jinro became the first non-Korean to reach the semi-finals in GSL Season 3. Jinro then went on to reach the semi-finals a second time. So far, Jinro is the only foreigner to reach the Ro4 in GSL. In November 2010 he won the Major League Gaming Starcraft 2 tournament in Dallas. His nickname comes from the Korean distiller Jinro.\n", "\n", "Title: LucifroN\n", "Text: Pedro \"LucifroN\" Moreno Durán (born 31 October 1991) is a Spanish professional gamer. He started his career in \"\" and later competed in both \"Starcraft 2\" and \"Heroes of the Storm\". At the age of 16, playing \"\", he became the world championship runner-up by finishing second on Blizzcon 2008. One year later he won the European Championship and the Electronic Sports World Cup Masters of Cheonan, winning the first, and to date only, gold medal for Spain in the competition. . In \"Starcraft 2\" he participated in several international tournaments, winning The Gathering and the IPL D.I.C.E Showdown among others. In \"Heroes of the Storm\" he played for Team Liquid, winning several tournaments, most notably three DreamHacks.\n", "\n", "Title: Atsuko Tanaka (voice actress)\n", "Text: Atsuko Tanaka (田中 敦子 , Tanaka Atsuko , born November 14, 1962 in Maebashi, Gunma) is a Japanese voice actress associated with Mausu Promotion (formerly Ezaki Productions). Her most-known voice role is Motoko Kusanagi in the \"Ghost in the Shell\" film and franchise. She also voices Caster in the \"Fate/stay night\", Lisa Lisa in \"JoJo's Bizarre Adventure\", Claudette in \"Queen's Blade\", Francis Midford in \"Black Butler\", and Karura in \"Utawarerumono\". In video games, she voices title characters Lara Croft in the Japanese dub of the \"Tomb Raider\" games, and Bayonetta in the \"\" film adaptation and \"Bayonetta 2\". She studied with the in voice training in 1991. In 2012, a Biglobe poll named her the voice actress with the sexiest voice.\n", "\n", "Title: Walk of the Stars\n", "Text: The Walk of the Stars was a section of the Bandstand Promenade in Bandra, Mumbai honouring Bollywood film stars. The path features about six statues of famous Bollywood actors as well as about 100 brass plates embossed with the handprints and signatures of other stars. The walk was inspired by the Hollywood Walk of Fame. It was funded and privately managed by UTV and promoted through their UTV Stars television channel. The walk was 2 km long. It was inaugurated by actress Kareena Kapoor on 28 March 2012, with actor Randhir Kapoor and filmmaker Madhur Bhandarkar also present.\n", "\n", "Title: Melody Parra\n", "Text: Melody Marie Tavitian-Parra is an American actress and model. Born and raised in Los Angeles, California, Parra demonstrated a talent for acting early on. She began acting in school plays at the age of 6 and continued throughout high school where she won the school's Best Actress Gold Medal, the Musical Theatre Director's Dream Actress Award, and the Best Film Actress Tommy at John Marshall High in Los Feliz. She made her professional stage debut during her senior year in \"What's Shakein?\" (2009) at the Greek Theatre in the play's lead role. In 2009, Parra was admitted to UCLA with a full merit scholarship. While pursuing a dual BA, Parra joined the university's prestigious ACT III Theatre Ensemble where she played lead and large supporting roles in classics such as \"Othello\", \"Oedipus Rex\", \"Macbeth\", and \"The Fall\". In 2012 she graduated UCLA at the age of 20, receiving her BA in English Literature and Spanish. She made her feature film debut the following year cast in the lead role of Stella in the indie film drama \"City of Quartz\" (2013). The film premiered at the BLOW-UP Arthouse International Film Festival. That same year she was cast in the comedy \"With this Ring\" (2013) where she played a supporting role in both the play and its on-screen adaptation. Parra's other films include the crime drama \"Here in the East\" (2014), \"Fronteras\" (2015), \"Ouroboros\" (2015), and \"Edge\" (2015). Both \"Here in the East\" and \"Edge\" won Best Film in the 2015 Hollywood Reel Independent Film Festival and the 2015 San Diego Film Festival, respectively.\n", "\n", "Title: James Harper (actor)\n", "Text: James W. Harper (born October 8, 1948) is an American actor. Throughout his career, he has acted in many movies and guest-starred in a myriad television shows, such as \"Frasier\", \"Matlock\", \"NYPD Blue\", \"\", and \"JAG\". He also played the role of Admiral Kelso in the 1998 film \"Armageddon\". In addition to acting, Harper has contributed his voice to several video games, most notably \"StarCraft\" as Arcturus Mengsk, \"\", and \"Diablo\". Harper reprised his role of Arcturus Mengsk in \"\" and \"\".\n", "\n", "Title: Walk All over Me\n", "Text: Walk All Over Me is a Canadian film released in 2007 written by Robert Cuffley and Jason Long. The film stars Leelee Sobieski as \"Alberta\", a small-town girl who assumes the false identity of her former babysitter and current dominatrix roommate \"Celene\", played by Tricia Helfer. Lothaire Bluteau, Michael Eklund, Michael Adamthwaite, and Jacob Tierney also star in the film. It was directed by Cuffley and produced by Carolyn McMaster.\n", "\n", "Title: Tricia Helfer\n", "Text: Tricia Janine Helfer (born April 11, 1974) is a Canadian model and actress. She is best known for playing the humanoid Cylon Number Six in Ronald D. Moore's re-imagined \"Battlestar Galactica\" television series (2004–2009) and for voicing Sarah Kerrigan, the Queen of Blades, in the \"Starcraft 2\" trilogy.\n", "\n", "Title: Julie Kavner\n", "Text: Julie Deborah Kavner (born September 7, 1950) is an American film and television actress, voice actress and comedian. She first attracted notice for her role as Valerie Harper's character's younger sister Brenda in the sitcom \"Rhoda\" for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"The Simpsons\". She also voices other characters for the show, including Jacqueline Bouvier, and Patty and Selma Bouvier.\n", "\n", "Question: The role of \"Celene\" in the film \"Walk All over Me\" was played by an actress that voices what role in the \"Starcraft 2\" triolgy?\n", "\n", "Answer:\n", "Predictions: \"Sarah Kerrigan, the Queen of Blades\"\n", "Solutions: Sarah Kerrigan\n", "Score: 1.0\n", "The solution is correct.\n", "{'name': 'contextual_understanding4378', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 1-th task:\\n\"\"\"\\nAnswer the question `{question}` based on the provided context `{context}`. Your response should be a direct answer without any explanations or reasoning. Format your output in XML format, such as xxx.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:15:37.252\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.727 | Total tokens: 17243016 | Current cost: $0.011 | Current tokens: 72442\u001b[0m\n", "\u001b[32m2025-12-14 12:15:38.893\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.727 | Total tokens: 17243148 | Current cost: $0.000 | Current tokens: 132\u001b[0m\n", "\u001b[32m2025-12-14 12:15:40.512\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.727 | Total tokens: 17245088 | Current cost: $0.000 | Current tokens: 1940\u001b[0m\n", "{'name': 'ambiguity_handling5585', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': \"```plaintext\\nThink step by step to answer the question based on the provided context. You should explain your thought process in the 'thought' field, and provide the final answer in the 'answer' field. Ensure that your response is concise and directly addresses the question without unnecessary elaboration. Format your output in XML format, such as {question} and {code}.\\n```\", 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:15:51.813\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.738 | Total tokens: 17317526 | Current cost: $0.011 | Current tokens: 72438\u001b[0m\n", "\u001b[32m2025-12-14 12:15:53.845\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.738 | Total tokens: 17317666 | Current cost: $0.000 | Current tokens: 140\u001b[0m\n", "\u001b[32m2025-12-14 12:15:56.242\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.739 | Total tokens: 17319886 | Current cost: $0.000 | Current tokens: 2220\u001b[0m\n", "{'name': 'error_handling8134', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. You should explain your thinking process in the \\'thought\\' field, ensuring that your response is based on the provided context and directly addresses the question without unnecessary elaboration. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Ensure that the context is clearly related to the question and that your reasoning is concise and relevant.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:16:13.089\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.750 | Total tokens: 17392378 | Current cost: $0.011 | Current tokens: 72492\u001b[0m\n", "\u001b[32m2025-12-14 12:16:15.561\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.750 | Total tokens: 17392511 | Current cost: $0.000 | Current tokens: 133\u001b[0m\n", "\u001b[32m2025-12-14 12:16:19.143\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.750 | Total tokens: 17395253 | Current cost: $0.000 | Current tokens: 2742\u001b[0m\n", "{'name': 'output_formatting574', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\nINSTRUCTION for the 4-th task:\\n\"\"\"\\nThink step by step to answer the question based on the provided context. Ensure that your response is clear, directly addresses the question without ambiguity, and is supported by the relevant context. Format your output in XML format, using {thought} to explain your reasoning process and {answer} to provide the final answer. Make sure to reference the relevant context in your thought process and ensure that the question is unambiguous.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:16:39.064\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.761 | Total tokens: 17467638 | Current cost: $0.011 | Current tokens: 72385\u001b[0m\n", "\u001b[32m2025-12-14 12:16:41.025\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.761 | Total tokens: 17467767 | Current cost: $0.000 | Current tokens: 129\u001b[0m\n", "\u001b[32m2025-12-14 12:16:43.811\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.762 | Total tokens: 17470359 | Current cost: $0.000 | Current tokens: 2592\u001b[0m\n", "{'name': 'feedback_mechanism5670', 'description': 'Answer the question based on the context.', 'inputs': [{'name': 'question', 'type': 'str', 'description': 'The problem to solve.', 'required': True}], 'outputs': [{'name': 'answer', 'type': 'str', 'description': 'The answer to the problem.', 'required': True}], 'prompt': '```plaintext\\n\"\"\"\\nThink step by step to answer the question. Ensure that the question is clear and concise, and that the context provided is directly relevant to the question. In the \\'thought\\' field, explain your reasoning process clearly, addressing any ambiguity in the question and ensuring that the context is sufficient to derive an accurate answer. Provide the final answer in the \\'answer\\' field. Format your output in xml format, such as {thought} and {answer}. Use the provided question and context to guide your response.\\n\"\"\"\\n```', 'prompt_template': {'class_name': 'StringTemplate', 'instruction': \"Think step by step to answer the question. You should explain your thinking process in the 'thought' field, and provide the final answer in the 'answer' field.\\nFormat your output in xml format, such as xxx and xxx.\"}, 'system_prompt': 'You are a helpful and highly intelligent assistant.', 'parse_mode': 'xml', 'parse_func': None, 'parse_title': None, 'tool_names': None}\n", "\u001b[32m2025-12-14 12:16:52.084\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.773 | Total tokens: 17542719 | Current cost: $0.011 | Current tokens: 72360\u001b[0m\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m2025-12-14 12:16:53.649\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.773 | Total tokens: 17542859 | Current cost: $0.000 | Current tokens: 140\u001b[0m\n", "\u001b[32m2025-12-14 12:16:56.762\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.models.model_utils\u001b[0m:\u001b[36mupdate_cost\u001b[0m:\u001b[36m87\u001b[0m - \u001b[1mTotal cost: $2.773 | Total tokens: 17545667 | Current cost: $0.000 | Current tokens: 2808\u001b[0m\n", "\u001b[32m2025-12-14 12:16:56.763\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'ambiguity_handling5585', 'error_handling8134', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 12:16:56.763\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m864\u001b[0m - \u001b[1mEvaluate the workflow at step 20 ...\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 2%|▏ | 1/50 [00:02<02:12, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 4%|▍ | 2/50 [00:07<03:00, 3.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 6%|▌ | 3/50 [00:10<02:49, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 8%|▊ | 4/50 [00:13<02:33, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 10%|█ | 5/50 [00:17<02:38, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 12%|█▏ | 6/50 [00:20<02:24, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 14%|█▍ | 7/50 [00:23<02:17, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 16%|█▌ | 8/50 [00:26<02:16, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 18%|█▊ | 9/50 [00:30<02:22, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 20%|██ | 10/50 [00:34<02:26, 3.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 22%|██▏ | 11/50 [00:37<02:13, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 24%|██▍ | 12/50 [00:40<02:10, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 26%|██▌ | 13/50 [00:43<02:01, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 28%|██▊ | 14/50 [00:46<01:48, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 30%|███ | 15/50 [00:49<01:50, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.6666666666666666, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 32%|███▏ | 16/50 [00:52<01:46, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 34%|███▍ | 17/50 [00:56<01:50, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 36%|███▌ | 18/50 [00:58<01:36, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.4, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 38%|███▊ | 19/50 [01:01<01:33, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 40%|████ | 20/50 [01:04<01:22, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 42%|████▏ | 21/50 [01:07<01:21, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 44%|████▍ | 22/50 [01:09<01:15, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 46%|████▌ | 23/50 [01:13<01:24, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.19354838709677416, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 48%|████▊ | 24/50 [01:16<01:20, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 50%|█████ | 25/50 [01:18<01:10, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 52%|█████▏ | 26/50 [01:21<01:05, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 54%|█████▍ | 27/50 [01:23<01:01, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 56%|█████▌ | 28/50 [01:30<01:22, 3.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.06060606060606061, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 58%|█████▊ | 29/50 [01:33<01:15, 3.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.8, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 60%|██████ | 30/50 [01:35<01:02, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 62%|██████▏ | 31/50 [01:37<00:53, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 64%|██████▍ | 32/50 [01:39<00:48, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 66%|██████▌ | 33/50 [01:43<00:48, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.888888888888889, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 68%|██████▊ | 34/50 [01:46<00:48, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 70%|███████ | 35/50 [01:49<00:45, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.33333333333333337, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 72%|███████▏ | 36/50 [01:52<00:43, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 74%|███████▍ | 37/50 [01:59<00:52, 4.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 76%|███████▌ | 38/50 [02:03<00:50, 4.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 78%|███████▊ | 39/50 [02:06<00:40, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 80%|████████ | 40/50 [02:09<00:34, 3.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.28571428571428575, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 82%|████████▏ | 41/50 [02:14<00:35, 3.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 0.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 84%|████████▍ | 42/50 [02:17<00:29, 3.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 86%|████████▌ | 43/50 [02:19<00:23, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 88%|████████▊ | 44/50 [02:25<00:23, 3.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.17391304347826084, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 90%|█████████ | 45/50 [02:28<00:18, 3.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 92%|█████████▏| 46/50 [02:31<00:14, 3.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 94%|█████████▍| 47/50 [02:34<00:09, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0, 'em': 0.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 96%|█████████▌| 48/50 [02:37<00:06, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "Evaluating workflow: 98%|█████████▊| 49/50 [02:40<00:03, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 1.0, 'em': 1.0, 'acc': 1.0}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Evaluating workflow: 100%|██████████| 50/50 [02:43<00:00, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "metrics {'f1': 0.5714285714285715, 'em': 0.0, 'acc': 1.0}\n", "\u001b[32m2025-12-14 12:19:40.707\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m867\u001b[0m - \u001b[1mStep 20 metrics: {'f1': 0.693672460934733, 'em': 0.52, 'acc': 0.74}\u001b[0m\n", "randomly update dataset\n", "\u001b[32m2025-12-14 12:19:40.707\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m873\u001b[0m - \u001b[1mReach the maximum number of steps 20. Stop the optimization.\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.708\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36moptimize\u001b[0m:\u001b[36m876\u001b[0m - \u001b[1mRestore the best graph from the snapshot ...\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.709\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.workflow.workflow_graph\u001b[0m:\u001b[36m_validate_workflow_structure\u001b[0m:\u001b[36m363\u001b[0m - \u001b[33m\u001b[1mThe workflow contains isolated nodes: ['contextual_understanding4378', 'error_handling8134', 'ambiguity_handling5585', 'output_formatting574', 'feedback_mechanism5670']\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.709\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36mevoagentx.optimizers.qastructure_optimizer\u001b[0m:\u001b[36mrestore_best_graph\u001b[0m:\u001b[36m1009\u001b[0m - \u001b[1mRestore the best graph from snapshot with metrics {'f1': 0.7448034437626467, 'em': 0.56, 'acc': 0.78} ...\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.713\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.agents.customize_agent\u001b[0m:\u001b[36m__init__\u001b[0m:\u001b[36m92\u001b[0m - \u001b[33m\u001b[1mBoth `prompt` and `prompt_template` are provided in `CustomizeAgent`. `prompt_template` will be used.\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.725\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.agents.customize_agent\u001b[0m:\u001b[36m__init__\u001b[0m:\u001b[36m92\u001b[0m - \u001b[33m\u001b[1mBoth `prompt` and `prompt_template` are provided in `CustomizeAgent`. `prompt_template` will be used.\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.735\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.agents.customize_agent\u001b[0m:\u001b[36m__init__\u001b[0m:\u001b[36m92\u001b[0m - \u001b[33m\u001b[1mBoth `prompt` and `prompt_template` are provided in `CustomizeAgent`. `prompt_template` will be used.\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.746\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.agents.customize_agent\u001b[0m:\u001b[36m__init__\u001b[0m:\u001b[36m92\u001b[0m - \u001b[33m\u001b[1mBoth `prompt` and `prompt_template` are provided in `CustomizeAgent`. `prompt_template` will be used.\u001b[0m\n", "\u001b[32m2025-12-14 12:19:40.756\u001b[0m | \u001b[33m\u001b[1mWARNING \u001b[0m | \u001b[36mevoagentx.agents.customize_agent\u001b[0m:\u001b[36m__init__\u001b[0m:\u001b[36m92\u001b[0m - \u001b[33m\u001b[1mBoth `prompt` and `prompt_template` are provided in `CustomizeAgent`. `prompt_template` will be used.\u001b[0m\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n", "Evaluating workflow: 0%| | 0/450 [00:00